diff options
author | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-01-18 16:31:56 +0100 |
---|---|---|
committer | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-04-05 09:00:10 +0200 |
commit | e7ec758dff23efcd34917d51228af8c36911b745 (patch) | |
tree | 2654d4f92e11d36cb36541c4fbfce230edf9d5ba /pimd/pim_nb_config.c | |
parent | pim6d: Adding ipv6 mld last-member-query-count CLI (diff) | |
download | frr-e7ec758dff23efcd34917d51228af8c36911b745.tar.xz frr-e7ec758dff23efcd34917d51228af8c36911b745.zip |
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 <nsaigomathi@vmware.com>
Diffstat (limited to 'pimd/pim_nb_config.c')
-rw-r--r-- | pimd/pim_nb_config.c | 4 |
1 files changed, 4 insertions, 0 deletions
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; } |