From e7ec758dff23efcd34917d51228af8c36911b745 Mon Sep 17 00:00:00 2001 From: Sai Gomathi N Date: Tue, 18 Jan 2022 07:31:56 -0800 Subject: pim6d: Adding "ipv6 mld last-member-query-interval" CLI Adding the Interface level config command ipv6 mld last-member-query-interval (1-65535) This command can be use to tune the response time for group specific queries. Signed-off-by: Sai Gomathi N --- pimd/pim_nb_config.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'pimd/pim_nb_config.c') diff --git a/pimd/pim_nb_config.c b/pimd/pim_nb_config.c index 5ea8ebc6d..ec63200d3 100644 --- a/pimd/pim_nb_config.c +++ b/pimd/pim_nb_config.c @@ -2765,6 +2765,7 @@ int lib_interface_gmp_address_family_query_max_response_time_modify( int lib_interface_gmp_address_family_last_member_query_interval_modify( struct nb_cb_modify_args *args) { +#if PIM_IPV == 4 struct interface *ifp; struct pim_interface *pim_ifp; int last_member_query_interval; @@ -2784,6 +2785,9 @@ int lib_interface_gmp_address_family_last_member_query_interval_modify( break; } +#else + /* TBD Depends on MLD data structure changes */ +#endif return NB_OK; } -- cgit v1.2.3