diff options
author | Philippe Guibert <philippe.guibert@6wind.com> | 2019-12-16 13:32:28 +0100 |
---|---|---|
committer | Philippe Guibert <philippe.guibert@6wind.com> | 2021-04-09 18:29:58 +0200 |
commit | 451e2b8c7e5c4839ad8c69ababf1940d68cf3ec9 (patch) | |
tree | 6944e7778b8ec0f82a6eb20fbde83045201710a5 /lib/log.c | |
parent | nhrp, lib, zebra: add/del neighbor entry possible from nhrp (diff) | |
download | frr-451e2b8c7e5c4839ad8c69ababf1940d68cf3ec9.tar.xz frr-451e2b8c7e5c4839ad8c69ababf1940d68cf3ec9.zip |
lib: add api to configure neighbor table per interface
this api is needed for nhrp. the goal is to implement it in zebra, while
other daemon will used it.
Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'lib/log.c')
-rw-r--r-- | lib/log.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -471,8 +471,8 @@ static const struct zebra_desc_table command_types[] = { DESC_ENTRY(ZEBRA_NHRP_NEIGH_REGISTER), DESC_ENTRY(ZEBRA_NHRP_NEIGH_UNREGISTER), DESC_ENTRY(ZEBRA_NEIGH_ADD), - DESC_ENTRY(ZEBRA_NEIGH_DEL)}; - + DESC_ENTRY(ZEBRA_NEIGH_DEL), + DESC_ENTRY(ZEBRA_CONFIGURE_ARP)}; #undef DESC_ENTRY static const struct zebra_desc_table unknown = {0, "unknown", '?'}; |