diff options
| author | Donald Sharp <sharpd@nvidia.com> | 2022-06-27 15:04:21 -0400 |
|---|---|---|
| committer | Donald Sharp <sharpd@nvidia.com> | 2022-06-27 15:04:21 -0400 |
| commit | 4c84aa5ebd5ceb6ee034f6292d1bda172372b847 (patch) | |
| tree | 1b6c9d051f5877365723f0fda7e4d20762a2fcdd /zebra/interface.h | |
| parent | f646c17a4349a2439230980bdae70b58b34b862c (diff) | |
zebra: mc_forwarding was being sent but not retrieved across dataplane
The mc_forwarding status for an interface was being sent but not
properly retrieved on the zebra master side of the dplane.
Signed-off-by: Donald Sharp <sharpd@nvidia.com>
Diffstat (limited to 'zebra/interface.h')
| -rw-r--r-- | zebra/interface.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/zebra/interface.h b/zebra/interface.h index 54ad91a0b2..e5b9841cd1 100644 --- a/zebra/interface.h +++ b/zebra/interface.h @@ -132,6 +132,9 @@ struct zebra_if { /* Linkdown status */ bool linkdown; + /* Is Multicast Forwarding on? */ + bool v4mcast_on; + /* Router advertise configuration. */ uint8_t rtadv_enable; |
