diff options
| author | David Lamparter <equinox@opensourcerouting.org> | 2022-03-12 22:08:35 +0100 |
|---|---|---|
| committer | David Lamparter <equinox@opensourcerouting.org> | 2022-03-28 14:13:23 +0200 |
| commit | b6d9ad298d625c9ac18f45dd0591b7d51473f12d (patch) | |
| tree | 4d9bbe8f3dc24f8a507ad763ad54319a4686f772 /pimd/pim_iface.c | |
| parent | cc362d24aa2a7a0342134f1d52572189a49f2cbb (diff) | |
pim6d: reenable socket functions
pim_sock_*() functions are adapted for IPv6 now, reenable calling them.
Signed-off-by: David Lamparter <equinox@opensourcerouting.org>
Diffstat (limited to 'pimd/pim_iface.c')
| -rw-r--r-- | pimd/pim_iface.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/pimd/pim_iface.c b/pimd/pim_iface.c index 8e0e418a99..4470d05663 100644 --- a/pimd/pim_iface.c +++ b/pimd/pim_iface.c @@ -187,9 +187,7 @@ struct pim_interface *pim_if_new(struct interface *ifp, bool igmp, bool pim, ifp->info = pim_ifp; -#if PIM_IPV == 4 pim_sock_reset(ifp); -#endif pim_if_add_vif(ifp, ispimreg, is_vxlan_term); pim_ifp->pim->mcast_if_count++; @@ -1751,7 +1749,6 @@ static int pim_ifp_down(struct interface *ifp) */ pim_if_addr_del_all(ifp); -#if PIM_IPV == 4 /* pim_sock_delete() closes the socket, stops read and timer threads, @@ -1760,7 +1757,6 @@ static int pim_ifp_down(struct interface *ifp) if (ifp->info) { pim_sock_delete(ifp, "link down"); } -#endif } if (ifp->info) { |
