diff options
author | Mobashshera Rasool <mrasool@vmware.com> | 2023-06-01 11:04:44 +0200 |
---|---|---|
committer | Mobashshera Rasool <mrasool@vmware.com> | 2023-06-07 09:01:05 +0200 |
commit | b25286add318ed97e66edfcfdd4c0d32989b09d6 (patch) | |
tree | ba0ec9640a176a3f20e2b538f9f30ea41d23c2d1 /pimd/pim_iface.h | |
parent | pimd, pim6d: Rename and move api pim_cmd_interface_delete (diff) | |
download | frr-b25286add318ed97e66edfcfdd4c0d32989b09d6.tar.xz frr-b25286add318ed97e66edfcfdd4c0d32989b09d6.zip |
pimd, pim6d: Move mld/igmp deletion code to a common api
Move the mld/igmp deletion common code to api pim_gm_interface_delete
code for IPv6 deletion(gm_ifp_teardown) for MLD was missing in this flow
Making the code common fixes this too.
Signed-off-by: Mobashshera Rasool <mrasool@vmware.com>
Diffstat (limited to 'pimd/pim_iface.h')
-rw-r--r-- | pimd/pim_iface.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_iface.h b/pimd/pim_iface.h index ffde72de8..0312f719d 100644 --- a/pimd/pim_iface.h +++ b/pimd/pim_iface.h @@ -244,5 +244,6 @@ int pim_if_ifchannel_count(struct pim_interface *pim_ifp); void pim_iface_init(void); void pim_pim_interface_delete(struct interface *ifp); +void pim_gm_interface_delete(struct interface *ifp); #endif /* PIM_IFACE_H */ |