summaryrefslogtreecommitdiffstats
path: root/pimd/pim_vty.c
diff options
context:
space:
mode:
authorAbhishek N R <abnr@vmware.com>2022-07-11 19:09:39 +0200
committerAbhishek N R <abnr@vmware.com>2022-08-29 08:33:07 +0200
commit707a9e9a905ed6ddc1697f79c77225c21bbcd0ac (patch)
tree98baba1aece759c5eb1b172dc2dddc2119ff0021 /pimd/pim_vty.c
parentpim6d: Completing "ipv6 mld last-member-query-count" command. (diff)
downloadfrr-707a9e9a905ed6ddc1697f79c77225c21bbcd0ac.tar.xz
frr-707a9e9a905ed6ddc1697f79c77225c21bbcd0ac.zip
pim6d: Completing "ipv6 mld last-member-query-interval" command
Signed-off-by: Abhishek N R <abnr@vmware.com>
Diffstat (limited to 'pimd/pim_vty.c')
-rw-r--r--pimd/pim_vty.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/pimd/pim_vty.c b/pimd/pim_vty.c
index a67ede9b4..c18652f72 100644
--- a/pimd/pim_vty.c
+++ b/pimd/pim_vty.c
@@ -395,6 +395,12 @@ static int gm_config_write(struct vty *vty, int writes,
vty_out(vty, " ipv6 mld last-member-query-count %d\n",
pim_ifp->gm_last_member_query_count);
+ /* IF ipv6 mld last-member_query-interval */
+ if (pim_ifp->gm_specific_query_max_response_time_dsec !=
+ IGMP_SPECIFIC_QUERY_MAX_RESPONSE_TIME_DSEC)
+ vty_out(vty, " ipv6 mld last-member-query-interval %d\n",
+ pim_ifp->gm_specific_query_max_response_time_dsec);
+
return 0;
}
#endif