summaryrefslogtreecommitdiffstats
path: root/babeld/babel_interface.c
diff options
context:
space:
mode:
Diffstat (limited to 'babeld/babel_interface.c')
-rw-r--r--babeld/babel_interface.c22
1 files changed, 2 insertions, 20 deletions
diff --git a/babeld/babel_interface.c b/babeld/babel_interface.c
index 59d065116..6e6030098 100644
--- a/babeld/babel_interface.c
+++ b/babeld/babel_interface.c
@@ -103,31 +103,18 @@ int babel_ifp_create (struct interface *ifp)
debugf(BABEL_DEBUG_IF, "receive a 'interface add'");
interface_recalculate(ifp);
-
+
return 0;
}
int
-babel_interface_delete (ZAPI_CALLBACK_ARGS)
+babel_ifp_destroy(struct interface *ifp)
{
- struct interface *ifp;
- struct stream *s;
-
debugf(BABEL_DEBUG_IF, "receive a 'interface delete'");
- s = zclient->ibuf;
- ifp = zebra_interface_state_read(s, vrf_id); /* it updates iflist */
-
- if (ifp == NULL)
- return 0;
-
if (IS_ENABLE(ifp))
interface_reset(ifp);
- /* To support pseudo interface do not free interface structure. */
- /* if_delete(ifp); */
- if_set_index(ifp, IFINDEX_INTERNAL);
-
return 0;
}
@@ -1250,11 +1237,6 @@ int babel_ifp_up(struct interface *ifp)
return 0;
}
-int babel_ifp_destroy(struct interface *ifp)
-{
- return 0;
-}
-
void
babel_if_init(void)
{