summaryrefslogtreecommitdiff
path: root/zebra/rt_socket.c
diff options
context:
space:
mode:
authorPhilippe Guibert <philippe.guibert@6wind.com>2019-12-16 13:34:00 +0100
committerPhilippe Guibert <philippe.guibert@6wind.com>2021-04-09 18:29:58 +0200
commit541025d6ffe2bee713cef8d5572a15d2b3dc5d11 (patch)
treec6c3ca7d13cdf247d344a597902f750f932a3b38 /zebra/rt_socket.c
parentdf948efc56d9db4d80dfc7aea6a8fe350fdea4bd (diff)
zebra: handler for configuring neighbor table
neighbor table api in zebra is added. a netlink api is created for that. the handler is called from the api defined in the previous commit. Signed-off-by: Philippe Guibert <philippe.guibert@6wind.com>
Diffstat (limited to 'zebra/rt_socket.c')
-rw-r--r--zebra/rt_socket.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/zebra/rt_socket.c b/zebra/rt_socket.c
index 006513ac9e..cbbc9b28fb 100644
--- a/zebra/rt_socket.c
+++ b/zebra/rt_socket.c
@@ -394,6 +394,11 @@ enum zebra_dplane_result kernel_mac_update_ctx(struct zebra_dplane_ctx *ctx)
return ZEBRA_DPLANE_REQUEST_SUCCESS;
}
+int kernel_configure_arp(struct interface *ifp, int family, ns_id_t ns_id)
+{
+ return 0;
+}
+
extern int kernel_interface_set_master(struct interface *master,
struct interface *slave)
{