diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2019-12-12 16:08:26 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2021-04-09 18:29:58 +0200 |
commit | b3b7510464952d0f2f024a31c5d4aede0fcabd75 (patch) | |
tree | 4b81fc781f1d197df4fd5183b559a183b02ea32d /nhrpd/nhrpd.h | |
parent | zebra: link layer config and notification, implementation in zebra (diff) | |
download | frr-b3b7510464952d0f2f024a31c5d4aede0fcabd75.tar.xz frr-b3b7510464952d0f2f024a31c5d4aede0fcabd75.zip |
nhrpd: link layer registration to notifications
neighbor notifications are done in zebra. so, instead of relying on
nhrp, rely on zebra by using zebra api interface.
Consequently, the code originally used in nhrp for netlink neighor
notification is no more used.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'nhrpd/nhrpd.h')
-rw-r--r-- | nhrpd/nhrpd.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/nhrpd/nhrpd.h b/nhrpd/nhrpd.h index e4afb22f8..6e7ddda18 100644 --- a/nhrpd/nhrpd.h +++ b/nhrpd/nhrpd.h @@ -326,6 +326,7 @@ int nhrp_interface_up(ZAPI_CALLBACK_ARGS); int nhrp_interface_down(ZAPI_CALLBACK_ARGS); int nhrp_interface_address_add(ZAPI_CALLBACK_ARGS); int nhrp_interface_address_delete(ZAPI_CALLBACK_ARGS); +void nhrp_neighbor_operation(ZAPI_CALLBACK_ARGS); void nhrp_interface_notify_add(struct interface *ifp, struct notifier_block *n, notifier_fn_t fn); |