diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2019-12-16 13:34:43 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2021-04-12 19:23:53 +0200 |
commit | f468a45af26433c70f61ff4df1c6dd30c551cbc5 (patch) | |
tree | 0d1c053570af7c4a29d69eb9da98f26ce7049cfa /nhrpd/nhrpd.h | |
parent | topotests: add standard nhrp test between spoke and hub (diff) | |
download | frr-f468a45af26433c70f61ff4df1c6dd30c551cbc5.tar.xz frr-f468a45af26433c70f61ff4df1c6dd30c551cbc5.zip |
nhrpd: add a zebra api to configure neighbor table per interface
neighbor table per interface is being configured per interface, via
zebra api.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'nhrpd/nhrpd.h')
-rw-r--r-- | nhrpd/nhrpd.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/nhrpd/nhrpd.h b/nhrpd/nhrpd.h index 0f4635d3d..136f855df 100644 --- a/nhrpd/nhrpd.h +++ b/nhrpd/nhrpd.h @@ -88,10 +88,12 @@ static inline int notifier_active(struct notifier_list *l) void nhrp_zebra_init(void); void nhrp_zebra_terminate(void); +void nhrp_send_zebra_configure_arp(struct interface *ifp, int family); void nhrp_send_zebra_nbr(union sockunion *in, union sockunion *out, struct interface *ifp); - +void nhrp_send_zebra_configure_arp(struct interface *ifp, + int family); struct zbuf; struct nhrp_vc; struct nhrp_cache; |