aboutsummaryrefslogtreecommitdiffstats
path: root/extras/vom/vom/interface_factory.cpp
diff options
context:
space:
mode:
authorNeale Ranns <nranns@cisco.com>2018-11-28 09:51:40 -0800
committerNeale Ranns <nranns@cisco.com>2018-11-29 13:44:12 +0000
commit8e1cc46b2bba1ade546d611cdf7b6e48c97d90a1 (patch)
tree3edcb77ee3af52f7a5b4c15d80bb352cbaa43766 /extras/vom/vom/interface_factory.cpp
parentb6a47953973f7c94239c394b649100e91bdb2152 (diff)
VOM: deprecate TAP add ip-punt redirect dump
Change-Id: I675e04d9f8bb2a18293cf6dd01581a9dc62882fe Signed-off-by: Neale Ranns <nranns@cisco.com>
Diffstat (limited to 'extras/vom/vom/interface_factory.cpp')
-rw-r--r--extras/vom/vom/interface_factory.cpp20
1 files changed, 2 insertions, 18 deletions
diff --git a/extras/vom/vom/interface_factory.cpp b/extras/vom/vom/interface_factory.cpp
index fd135f5820e..abb26f84a6f 100644
--- a/extras/vom/vom/interface_factory.cpp
+++ b/extras/vom/vom/interface_factory.cpp
@@ -76,7 +76,7 @@ interface_factory::new_interface(const vapi_payload_sw_interface_details& vd)
/*
* pull out the other special cases
*/
- if (interface::type_t::TAP == type || interface::type_t::TAPV2 == type) {
+ if (interface::type_t::TAPV2 == type) {
/*
* TAP interfaces
*/
@@ -165,21 +165,6 @@ interface_factory::new_af_packet_interface(
std::shared_ptr<tap_interface>
interface_factory::new_tap_interface(
- const vapi_payload_sw_interface_tap_details& vd)
-{
- std::shared_ptr<tap_interface> sp;
- std::string name = reinterpret_cast<const char*>(vd.dev_name);
- handle_t hdl(vd.sw_if_index);
-
- sp = tap_interface(name, interface::type_t::TAP, interface::admin_state_t::UP,
- route::prefix_t::ZERO)
- .singular();
- sp->set(hdl);
- return (sp);
-}
-
-std::shared_ptr<tap_interface>
-interface_factory::new_tap_v2_interface(
const vapi_payload_sw_interface_tap_v2_details& vd)
{
std::shared_ptr<tap_interface> sp;
@@ -196,8 +181,7 @@ interface_factory::new_tap_v2_interface(
route::prefix_t(1, (uint8_t*)vd.host_ip6_addr, vd.host_ip6_prefix_len);
l2_address_t l2_address(vd.host_mac_addr, 6);
- sp = tap_interface(name, interface::type_t::TAPV2,
- interface::admin_state_t::UP, pfx, l2_address)
+ sp = tap_interface(name, interface::admin_state_t::UP, pfx, l2_address)
.singular();
sp->set(hdl);