summaryrefslogtreecommitdiff
path: root/pimd/pim_tib.c
diff options
context:
space:
mode:
authorDonald Sharp <donaldsharp72@gmail.com>2022-04-20 07:43:09 -0400
committerGitHub <noreply@github.com>2022-04-20 07:43:09 -0400
commit831a15d3e3352ffe84e3a30144f4fe96f191dd62 (patch)
tree90ff686158935fad6a4080ead6375c038752bb7e /pimd/pim_tib.c
parent3d3c38b1d44f4d6f6f04a81fca70fc7ac195812a (diff)
parent80a82b567fd98fa8cf12cbdefab25e13f56d655f (diff)
Merge pull request #11023 from AbhishekNR/igmp_flag
pimd: Changing PIM_OIF_FLAG_PROTO_IGMP to PIM_OIF_FLAG_PROTO_GM
Diffstat (limited to 'pimd/pim_tib.c')
-rw-r--r--pimd/pim_tib.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/pimd/pim_tib.c b/pimd/pim_tib.c
index 838f11211e..80e75f1b09 100644
--- a/pimd/pim_tib.c
+++ b/pimd/pim_tib.c
@@ -110,8 +110,8 @@ bool tib_sg_gm_join(struct pim_instance *pim, pim_sgaddr sg,
if (PIM_I_am_DR(pim_oif) || PIM_I_am_DualActive(pim_oif)) {
int result;
- result = pim_channel_add_oif(*oilp, oif,
- PIM_OIF_FLAG_PROTO_IGMP, __func__);
+ result = pim_channel_add_oif(*oilp, oif, PIM_OIF_FLAG_PROTO_GM,
+ __func__);
if (result) {
if (PIM_DEBUG_MROUTE)
zlog_warn("%s: add_oif() failed with return=%d",
@@ -136,7 +136,7 @@ bool tib_sg_gm_join(struct pim_instance *pim, pim_sgaddr sg,
"%s: Failure to add local membership for %pSG",
__func__, &sg);
- pim_channel_del_oif(*oilp, oif, PIM_OIF_FLAG_PROTO_IGMP,
+ pim_channel_del_oif(*oilp, oif, PIM_OIF_FLAG_PROTO_GM,
__func__);
return false;
}
@@ -160,7 +160,7 @@ void tib_sg_gm_prune(struct pim_instance *pim, pim_sgaddr sg,
fixes the issue without ill effect, similar to
pim_forward_stop below.
*/
- result = pim_channel_del_oif(*oilp, oif, PIM_OIF_FLAG_PROTO_IGMP,
+ result = pim_channel_del_oif(*oilp, oif, PIM_OIF_FLAG_PROTO_GM,
__func__);
if (result) {
if (PIM_DEBUG_IGMP_TRACE)