diff options
| author | Donald Sharp <sharpd@cumulusnetworks.com> | 2020-03-23 11:28:45 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-23 11:28:45 -0400 |
| commit | a01f317b0fafd5ab3ea2a874a6e6889fa7bd1d28 (patch) | |
| tree | 88284e0235adc9bf428cfc48cd81e3714a883060 /pimd/pim_instance.c | |
| parent | 6ced257f012e5a87d0dce7e5f2b4a8f05838c093 (diff) | |
| parent | ccf696e85ff182fa01a9f92bc17506b6ef1e5910 (diff) | |
Merge pull request #6008 from sarav511/max_vif
pimd: Do not allow to configure multicast on more than MAXVIF interfaces
Diffstat (limited to 'pimd/pim_instance.c')
| -rw-r--r-- | pimd/pim_instance.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/pimd/pim_instance.c b/pimd/pim_instance.c index 2cda628a90..b4c2dd28cc 100644 --- a/pimd/pim_instance.c +++ b/pimd/pim_instance.c @@ -83,6 +83,7 @@ static struct pim_instance *pim_instance_init(struct vrf *vrf) pim_if_init(pim); + pim->mcast_if_count = 0; pim->keep_alive_time = PIM_KEEPALIVE_PERIOD; pim->rp_keep_alive_time = PIM_RP_KEEPALIVE_PERIOD; |
