diff options
author | Mohsin Kazmi <sykazmi@cisco.com> | 2019-03-22 15:13:31 +0100 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2019-04-04 07:29:34 +0000 |
commit | 8ea109e40a65c1d7696162fa3d4c1e386b6c9414 (patch) | |
tree | 949205872a9366ed13c3979bdc1b712101bc8c62 /src/plugins/gbp/gbp.api | |
parent | dc66aadb9ad7e4a7623e6689a21a46aadb9942b4 (diff) |
gbp: Add bd flags
Add flags for unknown unicast drop, multicast and broadcast
drop and arp unicast.
Change-Id: I1203137510b8bee0a20ecfe5f2efad8043d4bac6
Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'src/plugins/gbp/gbp.api')
-rw-r--r-- | src/plugins/gbp/gbp.api | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/plugins/gbp/gbp.api b/src/plugins/gbp/gbp.api index 31bf3f28970..b55d8a86466 100644 --- a/src/plugins/gbp/gbp.api +++ b/src/plugins/gbp/gbp.api @@ -23,6 +23,9 @@ enum gbp_bridge_domain_flags { GBP_BD_API_FLAG_NONE = 0, GBP_BD_API_FLAG_DO_NOT_LEARN = 1, + GBP_BD_API_FLAG_UU_FWD_DROP = 2, + GBP_BD_API_FLAG_MCAST_DROP = 4, + GBP_BD_API_FLAG_UCAST_ARP = 8, }; typedef gbp_bridge_domain |