diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-08-11 02:04:20 +0200 |
---|---|---|
committer | Donald Sharp <sharpd@cumulusnetworks.com> | 2016-12-22 02:26:06 +0100 |
commit | e3be04328f601963c825c722355f62c4b4e7cb31 (patch) | |
tree | 5ea05fcdf1d6c77bb4124650d9431fb47aa54af1 /lib | |
parent | pimd: Fix igmp(*,G) not influencing S,G mroutes (diff) | |
download | frr-e3be04328f601963c825c722355f62c4b4e7cb31.tar.xz frr-e3be04328f601963c825c722355f62c4b4e7cb31.zip |
lib, pimd, zebra: Allow pimd to ask the kernel about mroute info
When we need to lookup the mroute info for a route. Allow
pimd to ask the kernel.
Signed-off-by: Donald Sharp <sharpd@cumulusnetworks.com>
Diffstat (limited to 'lib')
-rw-r--r-- | lib/log.c | 1 | ||||
-rw-r--r-- | lib/zebra.h | 1 |
2 files changed, 2 insertions, 0 deletions
@@ -989,6 +989,7 @@ static const struct zebra_desc_table command_types[] = { DESC_ENTRY (ZEBRA_IPV4_NEXTHOP_DELETE), DESC_ENTRY (ZEBRA_IPV6_NEXTHOP_ADD), DESC_ENTRY (ZEBRA_IPV6_NEXTHOP_DELETE), + DESC_ENTRY (ZEBRA_IPMR_ROUTE_STATS), }; #undef DESC_ENTRY diff --git a/lib/zebra.h b/lib/zebra.h index 1fc643d59..f34486769 100644 --- a/lib/zebra.h +++ b/lib/zebra.h @@ -405,6 +405,7 @@ typedef enum { ZEBRA_IPV4_NEXTHOP_DELETE, ZEBRA_IPV6_NEXTHOP_ADD, ZEBRA_IPV6_NEXTHOP_DELETE, + ZEBRA_IPMR_ROUTE_STATS, } zebra_message_types_t; /* Marker value used in new Zserv, in the byte location corresponding |