diff options
author | Neale Ranns <neale.ranns@cisco.com> | 2018-04-09 01:53:01 -0700 |
---|---|---|
committer | Neale Ranns <nranns@cisco.com> | 2018-04-11 14:59:16 +0000 |
commit | 1a2b9e6d73876f7c420184b78d46e14f586402bc (patch) | |
tree | 6474008155dc78cfae38e21fda452416e9035056 /src/vnet/interface.h | |
parent | 70e1ae2659717a4db1a1795bbf28227e1ba7b4c2 (diff) |
L2: no-flood interface type in the Bridge-Domain
Change-Id: I50ff0cacf88182f8e0be19840c50f4954de586e2
Signed-off-by: Neale Ranns <neale.ranns@cisco.com>
(cherry picked from commit 87dad11c8717735479e57cf6c065c7a7963c3aa3)
Diffstat (limited to 'src/vnet/interface.h')
-rw-r--r-- | src/vnet/interface.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/vnet/interface.h b/src/vnet/interface.h index 00a7353d701..f49a1bcdc8e 100644 --- a/src/vnet/interface.h +++ b/src/vnet/interface.h @@ -556,11 +556,15 @@ typedef struct typedef enum { + /* THe BVI interface */ + VNET_FLOOD_CLASS_BVI, /* Always flood */ VNET_FLOOD_CLASS_NORMAL, VNET_FLOOD_CLASS_TUNNEL_MASTER, /* Does not flood when tunnel master is in the same L2 BD */ - VNET_FLOOD_CLASS_TUNNEL_NORMAL + VNET_FLOOD_CLASS_TUNNEL_NORMAL, + /* Never flood to this type */ + VNET_FLOOD_CLASS_NO_FLOOD, } vnet_flood_class_t; /* Software-interface. This corresponds to a Ethernet VLAN, ATM vc, a |