diff options
| author | Donatas Abraitis <donatas@opensourcerouting.org> | 2022-08-18 09:47:03 +0300 | 
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-08-18 09:47:03 +0300 | 
| commit | b32cf39d45b606e1b5da916c5419db71fa3d0fd5 (patch) | |
| tree | 1adc2dee1ea2f8a71ba44665f224578ba9c6f316 /pimd/pim_vty.c | |
| parent | 61364bed38f64a8150ffb91ada9f9aa5b05253a3 (diff) | |
| parent | 5c1b3cd2d9454ea8abee476c79c97cb2e139b77c (diff) | |
Merge pull request #11485 from AbhishekNR/ipv6_mld_todo
pim6d: Completing "ipv6 mld" config command.
Diffstat (limited to 'pimd/pim_vty.c')
| -rw-r--r-- | pimd/pim_vty.c | 6 | 
1 files changed, 6 insertions, 0 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c index 3d5d68b1f4..cfbd436981 100644 --- a/pimd/pim_vty.c +++ b/pimd/pim_vty.c @@ -370,6 +370,12 @@ static int gm_config_write(struct vty *vty, int writes,  static int gm_config_write(struct vty *vty, int writes,  			   struct pim_interface *pim_ifp)  { +	/* IF ipv6 mld */ +	if (pim_ifp->gm_enable) { +		vty_out(vty, " ipv6 mld\n"); +		++writes; +	} +  	if (pim_ifp->mld_version != MLD_DEFAULT_VERSION)  		vty_out(vty, " ipv6 mld version %d\n", pim_ifp->mld_version);  	if (pim_ifp->gm_default_query_interval != IGMP_GENERAL_QUERY_INTERVAL)  | 
