diff options
author | Satheesh Kumar K <sathk@cumulusnetworks.com> | 2019-08-26 11:18:05 +0200 |
---|---|---|
committer | Satheesh Kumar K <sathk@cumulusnetworks.com> | 2019-09-24 10:35:09 +0200 |
commit | 5fdca4ded5794dcf97235fa3f2d1f0e7e0969c29 (patch) | |
tree | dd9bfe9f888c0287e3ad40ebd91f64645f0ed4f1 /pimd/pim_zebra.c | |
parent | pimd : Add support for MLAG Register & Un-register (diff) | |
download | frr-5fdca4ded5794dcf97235fa3f2d1f0e7e0969c29.tar.xz frr-5fdca4ded5794dcf97235fa3f2d1f0e7e0969c29.zip |
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 '')
-rw-r--r-- | pimd/pim_zebra.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/pimd/pim_zebra.c b/pimd/pim_zebra.c index e9cfc7e52..073943c69 100644 --- a/pimd/pim_zebra.c +++ b/pimd/pim_zebra.c @@ -46,6 +46,7 @@ #include "pim_nht.h" #include "pim_ssm.h" #include "pim_vxlan.h" +#include "pim_mlag.h" #undef PIM_DEBUG_IFADDR_DUMP #define PIM_DEBUG_IFADDR_DUMP @@ -803,6 +804,9 @@ void pim_zebra_init(void) zclient->nexthop_update = pim_parse_nexthop_update; zclient->vxlan_sg_add = pim_zebra_vxlan_sg_proc; zclient->vxlan_sg_del = pim_zebra_vxlan_sg_proc; + zclient->mlag_process_up = pim_zebra_mlag_process_up; + zclient->mlag_process_down = pim_zebra_mlag_process_down; + zclient->mlag_handle_msg = pim_zebra_mlag_handle_msg; zclient_init(zclient, ZEBRA_ROUTE_PIM, 0, &pimd_privs); if (PIM_DEBUG_PIM_TRACE) { |