X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=extras%2Fvom%2Fvom%2Fl2_binding_cmds.hpp;h=e864f9d01492dda709e1cae4971c39f199a30c8b;hb=8c8acc0;hp=d105c18a40d1cb69daea27a0a5776bc873cc5adf;hpb=164e5f8c63652028ecb9c3570e1ea8618b163071;p=vpp.git diff --git a/extras/vom/vom/l2_binding_cmds.hpp b/extras/vom/vom/l2_binding_cmds.hpp index d105c18a40d..e864f9d0149 100644 --- a/extras/vom/vom/l2_binding_cmds.hpp +++ b/extras/vom/vom/l2_binding_cmds.hpp @@ -29,13 +29,16 @@ namespace l2_binding_cmds { * A functor class that binds L2 configuration to an interface */ class bind_cmd - : public rpc_cmd, rc_t, vapi::Sw_interface_set_l2_bridge> + : public rpc_cmd, vapi::Sw_interface_set_l2_bridge> { public: /** * Constructor */ - bind_cmd(HW::item& item, const handle_t& itf, uint32_t bd, bool is_bvi); + bind_cmd(HW::item& item, + const handle_t& itf, + uint32_t bd, + const l2_binding::l2_port_type_t& port_type); /** * Issue the command to VPP/HW @@ -63,16 +66,16 @@ private: uint32_t m_bd; /** - * Is it a BVI interface that is being bound + * What is the port type i.e. normal, bvi, uu-fwd that is being bound */ - bool m_is_bvi; + const l2_binding::l2_port_type_t& m_port_type; }; /** * A cmd class that Unbinds L2 configuration from an interface */ class unbind_cmd - : public rpc_cmd, rc_t, vapi::Sw_interface_set_l2_bridge> + : public rpc_cmd, vapi::Sw_interface_set_l2_bridge> { public: /** @@ -81,7 +84,7 @@ public: unbind_cmd(HW::item& item, const handle_t& itf, uint32_t bd, - bool is_bvi); + const l2_binding::l2_port_type_t& port_type); /** * Issue the command to VPP/HW @@ -109,16 +112,15 @@ private: uint32_t m_bd; /** - * Is it a BVI interface that is being bound + * What is the port type i.e. bvi, normal or uu-fwd that is being bound */ - bool m_is_bvi; + const l2_binding::l2_port_type_t& m_port_type; }; /** * A cmd class sets the VTR operation */ class set_vtr_op_cmd : public rpc_cmd, - rc_t, vapi::L2_interface_vlan_tag_rewrite> { public: