summaryrefslogtreecommitdiff
path: root/pimd/pim_nb_config.c
diff options
context:
space:
mode:
authorSai Gomathi <nsaigomathi@vmware.com>2021-12-03 09:33:53 -0800
committerSai Gomathi <nsaigomathi@vmware.com>2021-12-03 10:10:40 -0800
commit517001077fe2f038adfef09bdc9b09b7e9a654d0 (patch)
tree35e9ebf70a3413970767daec8752bd6f6e315429 /pimd/pim_nb_config.c
parent9c8523e089e97d83a7487f6eee093b73f7b49bd9 (diff)
pimd: Modifying name of struct igmp_source to struct gm_source for IPv6.
Modifying name of struct igmp_source to struct gm_source, which is to be used by both IPv4 and IPv6(for both MLD and IGMP). Co-authored-by: Mobashshera Rasool <mrasool@vmware.com> Co-authored-by: Sarita Patra <saritap@vmware.com> Signed-off-by: Sai Gomathi <nsaigomathi@vmware.com>
Diffstat (limited to 'pimd/pim_nb_config.c')
-rw-r--r--pimd/pim_nb_config.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/pimd/pim_nb_config.c b/pimd/pim_nb_config.c
index 2399cf5c30..71cbf3ea1d 100644
--- a/pimd/pim_nb_config.c
+++ b/pimd/pim_nb_config.c
@@ -88,7 +88,7 @@ static void pim_if_membership_refresh(struct interface *ifp)
/* scan igmp groups */
for (ALL_LIST_ELEMENTS_RO(pim_ifp->group_list, grpnode, grp)) {
struct listnode *srcnode;
- struct igmp_source *src;
+ struct gm_source *src;
/* scan group sources */
for (ALL_LIST_ELEMENTS_RO(grp->group_source_list, srcnode,
@@ -467,7 +467,7 @@ static void change_query_max_response_time(struct pim_interface *pim_ifp,
/* scan socket groups */
for (ALL_LIST_ELEMENTS_RO(pim_ifp->group_list, grp_node, grp)) {
struct listnode *src_node;
- struct igmp_source *src;
+ struct gm_source *src;
/* reset group timers for groups in EXCLUDE mode */
if (grp->group_filtermode_isexcl)