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.c | |
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.c')
-rw-r--r-- | src/plugins/gbp/gbp_api.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/src/plugins/gbp/gbp_api.c b/src/plugins/gbp/gbp_api.c index 8878119d766..76f0b218a19 100644 --- a/src/plugins/gbp/gbp_api.c +++ b/src/plugins/gbp/gbp_api.c @@ -325,7 +325,12 @@ gbp_bridge_domain_flags_from_api (vl_api_gbp_bridge_domain_flags_t a) if (a & GBP_BD_API_FLAG_DO_NOT_LEARN) g |= GBP_BD_FLAG_DO_NOT_LEARN; - + if (a & GBP_BD_API_FLAG_UU_FWD_DROP) + g |= GBP_BD_FLAG_UU_FWD_DROP; + if (a & GBP_BD_API_FLAG_MCAST_DROP) + g |= GBP_BD_FLAG_MCAST_DROP; + if (a & GBP_BD_API_FLAG_UCAST_ARP) + g |= GBP_BD_FLAG_UCAST_ARP; return (g); } |