summaryrefslogtreecommitdiff
path: root/zebra/zebra_router.h
diff options
context:
space:
mode:
authorDonald Sharp <sharpd@nvidia.com>2022-06-27 15:30:55 -0400
committerDonald Sharp <sharpd@nvidia.com>2022-06-27 16:30:20 -0400
commit385d37ab3177650ef341798ad6ee9699c0dba362 (patch)
tree11a3a97950a2cfd7f55e0c916aff208e90fb2e6f /zebra/zebra_router.h
parentd53dc9bd8164ba40242e2013d382fb01eb0b96ed (diff)
zebra: Add ability for netconf dplane to handle global values
Add the ability for the netconf dplane code to handle the global NETCONFA_IFINDEX_DEFAULT and NETCONF_IFINDEX_ALL values. Then store our interested values when we get them from the kernel as well as being able to display them to the end operator. Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/zebra_router.h')
-rw-r--r--zebra/zebra_router.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/zebra/zebra_router.h b/zebra/zebra_router.h
index c96c8e5f46..74f87c7b1a 100644
--- a/zebra/zebra_router.h
+++ b/zebra/zebra_router.h
@@ -220,6 +220,11 @@ struct zebra_router {
bool supports_nhgs;
+ bool all_mc_forwardingv4, default_mc_forwardingv4;
+ bool all_mc_forwardingv6, default_mc_forwardingv6;
+ bool all_linkdownv4, default_linkdownv4;
+ bool all_linkdownv6, default_linkdownv6;
+
#define ZEBRA_DEFAULT_NHG_KEEP_TIMER 180
uint32_t nhg_keep;
};