aboutsummaryrefslogtreecommitdiffstats
path: root/src/vpp-api/vom/bridge_domain_entry_cmds.hpp
diff options
context:
space:
mode:
authorMohsin Kazmi <sykazmi@cisco.com>2017-12-01 15:12:57 +0100
committerNeale Ranns <nranns@cisco.com>2017-12-02 17:11:50 +0000
commite2e9ce5cec3bacaa9445761d86ead2d582b46dca (patch)
treeb018cfd683a59b282a1fee4d0fefd5a66b1be98a /src/vpp-api/vom/bridge_domain_entry_cmds.hpp
parent91c6ef7cae2d20ca17a69003a44090614412c63f (diff)
VOM: l2fib: Add bvi flag support
Change-Id: I03d7508649e80a538fcf9541815e2c29224bc87a Signed-off-by: Mohsin Kazmi <sykazmi@cisco.com>
Diffstat (limited to 'src/vpp-api/vom/bridge_domain_entry_cmds.hpp')
-rw-r--r--src/vpp-api/vom/bridge_domain_entry_cmds.hpp10
1 files changed, 8 insertions, 2 deletions
diff --git a/src/vpp-api/vom/bridge_domain_entry_cmds.hpp b/src/vpp-api/vom/bridge_domain_entry_cmds.hpp
index 780c376b020..dc46719ffda 100644
--- a/src/vpp-api/vom/bridge_domain_entry_cmds.hpp
+++ b/src/vpp-api/vom/bridge_domain_entry_cmds.hpp
@@ -37,7 +37,8 @@ public:
create_cmd(HW::item<bool>& item,
const mac_address_t& mac,
uint32_t id,
- handle_t tx_intf);
+ handle_t tx_intf,
+ bool is_bvi);
/**
* Issue the command to VPP/HW
@@ -58,6 +59,7 @@ private:
mac_address_t m_mac;
uint32_t m_bd;
handle_t m_tx_itf;
+ bool m_is_bvi;
};
/**
@@ -69,7 +71,10 @@ public:
/**
* Constructor
*/
- delete_cmd(HW::item<bool>& item, const mac_address_t& mac, uint32_t id);
+ delete_cmd(HW::item<bool>& item,
+ const mac_address_t& mac,
+ uint32_t id,
+ bool is_bvi);
/**
* Issue the command to VPP/HW
@@ -89,6 +94,7 @@ public:
private:
mac_address_t m_mac;
uint32_t m_bd;
+ bool m_is_bvi;
};
/**