diff options
author | Donald Sharp <sharpd@cumulusnetworks.com> | 2019-05-31 03:23:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-05-31 03:23:11 +0200 |
commit | 008def86430d7d49abe0adb3e3a17e019f6aed2c (patch) | |
tree | 7190636bc15ab0a9120d8aa498e253c1a014042e /pimd/pim_iface.c | |
parent | Merge pull request #4400 from LabNConsulting/working/master/centos7-doc (diff) | |
parent | pimd: new cli to configure last-member-query-count & last-member-query-interval (diff) | |
download | frr-008def86430d7d49abe0adb3e3a17e019f6aed2c.tar.xz frr-008def86430d7d49abe0adb3e3a17e019f6aed2c.zip |
Merge pull request #4369 from patrasar/lmqc_lmqt
pimd: new cli to configure last-member-query-count & last-member-quer…
Diffstat (limited to 'pimd/pim_iface.c')
-rw-r--r-- | pimd/pim_iface.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/pimd/pim_iface.c b/pimd/pim_iface.c index 08be38c13..7b8f04569 100644 --- a/pimd/pim_iface.c +++ b/pimd/pim_iface.c @@ -131,6 +131,8 @@ struct pim_interface *pim_if_new(struct interface *ifp, bool igmp, bool pim, IGMP_QUERY_MAX_RESPONSE_TIME_DSEC; pim_ifp->igmp_specific_query_max_response_time_dsec = IGMP_SPECIFIC_QUERY_MAX_RESPONSE_TIME_DSEC; + pim_ifp->igmp_last_member_query_count = + IGMP_DEFAULT_ROBUSTNESS_VARIABLE; /* BSM config on interface: TRUE by default */ pim_ifp->bsm_enable = true; |