diff options
author | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-01-18 16:24:11 +0100 |
---|---|---|
committer | Sai Gomathi N <nsaigomathi@vmware.com> | 2022-04-05 09:00:10 +0200 |
commit | c889adcb263f8126ffe34f5def48e73f2defc92f (patch) | |
tree | 8a6e0b1d84acae4c1caebf0eed7bef00ade236b8 /pimd/pim_nb_config.c | |
parent | pim6d: Adding "ipv6 mld query-max-response-time" CLI (diff) | |
download | frr-c889adcb263f8126ffe34f5def48e73f2defc92f.tar.xz frr-c889adcb263f8126ffe34f5def48e73f2defc92f.zip |
pim6d: Adding ipv6 mld last-member-query-count CLI
Adding the Interface level config command
ipv6 mld last-member-query-count (1-255)
This command can be use to tune the number of Multicast-Address- Specific Queries
sent before the router assumes there are no remaining listeners for an address on a link.
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 97d307d14..5ea8ebc6d 100644 --- a/pimd/pim_nb_config.c +++ b/pimd/pim_nb_config.c @@ -2794,6 +2794,7 @@ int lib_interface_gmp_address_family_last_member_query_interval_modify( int lib_interface_gmp_address_family_robustness_variable_modify( struct nb_cb_modify_args *args) { +#if PIM_IPV == 4 struct interface *ifp; struct pim_interface *pim_ifp; int last_member_query_count; @@ -2812,6 +2813,9 @@ int lib_interface_gmp_address_family_robustness_variable_modify( break; } +#else + /* TBD Depends on MLD data structure changes */ +#endif return NB_OK; } |