diff options
author | Daniel Baumann <daniel@debian.org> | 2024-11-09 14:26:35 +0100 |
---|---|---|
committer | Daniel Baumann <daniel@debian.org> | 2024-11-09 14:26:35 +0100 |
commit | 47e4d7c791a050deb06e6c0fdfcac94a782a7cb9 (patch) | |
tree | 19edcac0f5dbda32bc329fa68773254fb2c488c3 /nhrpd/netlink.h | |
parent | Initial commit. (diff) | |
download | frr-47e4d7c791a050deb06e6c0fdfcac94a782a7cb9.tar.xz frr-47e4d7c791a050deb06e6c0fdfcac94a782a7cb9.zip |
Adding upstream version 10.1.1.upstream/10.1.1
Signed-off-by: Daniel Baumann <daniel@debian.org>
Diffstat (limited to 'nhrpd/netlink.h')
-rw-r--r-- | nhrpd/netlink.h | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/nhrpd/netlink.h b/nhrpd/netlink.h new file mode 100644 index 00000000..33af1a02 --- /dev/null +++ b/nhrpd/netlink.h @@ -0,0 +1,17 @@ +// SPDX-License-Identifier: GPL-2.0-or-later +/* NHRP netlink/neighbor table API + * Copyright (c) 2014-2015 Timo Teräs + */ + +#include <zebra.h> +#include <vrf.h> +#include <if.h> + + +extern int netlink_nflog_group; +extern int netlink_mcast_nflog_group; + +void netlink_update_binding(struct interface *ifp, union sockunion *proto, + union sockunion *nbma); +void netlink_set_nflog_group(int nlgroup); + |