diff options
| author | Satheesh Kumar K <sathk@cumulusnetworks.com> | 2019-11-12 00:17:13 -0800 |
|---|---|---|
| committer | Satheesh Kumar K <sathk@cumulusnetworks.com> | 2019-11-13 20:43:15 -0800 |
| commit | 46c2687c72e59dce69a5f5d35fc7bd4d76bc740e (patch) | |
| tree | 36bfd76a80572e00abd9db78e49b10ced1153e39 /pimd/pim_mlag.h | |
| parent | 36b5b98fefd2f77297f31274ca031104902f8b38 (diff) | |
pimd, lib: adding support for MLAG Message processing at PIM
This includes:
1. Defining message formats
2. Stream Decoding after receiving the message at PIM
3. Handling MLAG UP & Down Notifications
Signed-off-by: Satheesh Kumar K <sathk@cumulusnetworks.com>
Diffstat (limited to 'pimd/pim_mlag.h')
| -rw-r--r-- | pimd/pim_mlag.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/pimd/pim_mlag.h b/pimd/pim_mlag.h index b1c3fce4c8..e86fdae78f 100644 --- a/pimd/pim_mlag.h +++ b/pimd/pim_mlag.h @@ -34,4 +34,7 @@ extern void pim_if_configure_mlag_dualactive(struct pim_interface *pim_ifp); extern void pim_if_unconfigure_mlag_dualactive(struct pim_interface *pim_ifp); extern void pim_mlag_register(void); extern void pim_mlag_deregister(void); +extern int pim_zebra_mlag_process_up(void); +extern int pim_zebra_mlag_process_down(void); +extern int pim_zebra_mlag_handle_msg(struct stream *msg, int len); #endif |
