diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-09-19 17:48:24 +0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-19 17:48:24 +0300 | 
| commit | e09ce4b894233d7a71952df132f56276f8ba1699 (patch) | |
| tree | aa527e7875071fe9d306c2e34fa8ebeca6fb91c6 /pimd/pim_iface.c | |
| parent | 173bdac44bf5bb03051194366bd56d79a7f1d56e (diff) | |
| parent | de5dc09238d0020f0527ba1a75963873c7ce80bd (diff) | |
Merge pull request #11872 from AbhishekNR/const_igmp_gm
pimd, pim6d: Changing IGMP to GM in few macro's.
Diffstat (limited to 'pimd/pim_iface.c')
| -rw-r--r-- | pimd/pim_iface.c | 10 | 
1 files changed, 5 insertions, 5 deletions
diff --git a/pimd/pim_iface.c b/pimd/pim_iface.c index 9ed921cde6..6f272f0085 100644 --- a/pimd/pim_iface.c +++ b/pimd/pim_iface.c @@ -131,13 +131,13 @@ struct pim_interface *pim_if_new(struct interface *ifp, bool gm, bool pim,  	pim_ifp->igmp_version = IGMP_DEFAULT_VERSION;  	pim_ifp->mld_version = MLD_DEFAULT_VERSION;  	pim_ifp->gm_default_robustness_variable = -		IGMP_DEFAULT_ROBUSTNESS_VARIABLE; -	pim_ifp->gm_default_query_interval = IGMP_GENERAL_QUERY_INTERVAL; +		GM_DEFAULT_ROBUSTNESS_VARIABLE; +	pim_ifp->gm_default_query_interval = GM_GENERAL_QUERY_INTERVAL;  	pim_ifp->gm_query_max_response_time_dsec = -		IGMP_QUERY_MAX_RESPONSE_TIME_DSEC; +		GM_QUERY_MAX_RESPONSE_TIME_DSEC;  	pim_ifp->gm_specific_query_max_response_time_dsec = -		IGMP_SPECIFIC_QUERY_MAX_RESPONSE_TIME_DSEC; -	pim_ifp->gm_last_member_query_count = IGMP_DEFAULT_ROBUSTNESS_VARIABLE; +		GM_SPECIFIC_QUERY_MAX_RESPONSE_TIME_DSEC; +	pim_ifp->gm_last_member_query_count = GM_DEFAULT_ROBUSTNESS_VARIABLE;  	/* BSM config on interface: true by default */  	pim_ifp->bsm_enable = true;  | 
