21 namespace vxlan_tunnel_cmds {
24 const std::string&
name,
29 , m_mcast_itf(mcast_itf)
36 return (m_ep == other.m_ep);
42 msg_t req(con.
ctx(), std::ref(*
this));
44 auto& payload = req.get_request().get_payload();
47 to_bytes(m_ep.
src, &payload.is_ipv6, payload.src_address);
48 to_bytes(m_ep.
dst, &payload.is_ipv6, payload.dst_address);
49 payload.mcast_sw_if_index = m_mcast_itf.
value();
50 payload.encap_vrf_id = 0;
51 payload.decap_next_index = ~0;
52 payload.vni = m_ep.
vni;
85 return (m_ep == other.m_ep);
91 msg_t req(con.
ctx(), std::ref(*
this));
93 auto payload = req.get_request().get_payload();
96 to_bytes(m_ep.
src, &payload.is_ipv6, payload.src_address);
97 to_bytes(m_ep.
dst, &payload.is_ipv6, payload.dst_address);
98 payload.mcast_sw_if_index = ~0;
99 payload.encap_vrf_id = 0;
100 payload.decap_next_index = ~0;
101 payload.vni = m_ep.
vni;
115 std::ostringstream s;
134 m_dump.reset(
new msg_t(con.
ctx(), std::ref(*
this)));
136 auto& payload = m_dump->get_request().get_payload();
137 payload.sw_if_index = ~0;
149 return (
"Vpp-vxlan_tunnels-Dump");
std::string to_string() const
convert to string format for debug purposes
static const rc_t NOOP
The HW write/update action was/has not been attempted.
rc_t issue(connection &con)
Issue the command to VPP/HW.
rc_t issue(connection &con)
Issue the command to VPP/HW.
uint32_t value() const
get the value of the handle
Combaintion of attributes that are a unique key for a VXLAN tunnel.
void remove_interface()
remove the deleted interface from the DB
boost::asio::ip::address dst
The destination IP address of the endpoint.
std::string to_string() const
convert to string format for debug purposes
rc_t rc() const
Get the HW return code.
Error codes that VPP will return during a HW write.
A Command class that creates an VXLAN tunnel.
rc_t wait()
Wait on the commands promise.
std::string to_string() const
convert to string format for debug purposes
void to_bytes(const boost::asio::ip::address_v6 &addr, uint8_t *array)
A representation of the connection to VPP.
rc_t issue(connection &con)
Issue the command to VPP/HW.
A functor class that creates an VXLAN tunnel.
A cmd class that Dumps all the Vpp interfaces.
create_cmd(HW::item< handle_t > &item, const std::string &name, const vxlan_tunnel::endpoint_t &ep, handle_t mcast_itf)
Create command constructor taking HW item to update and the endpoint values.
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
bool operator==(const create_cmd &i) const
Comparison operator - only used for UT.
A representation of an interface in VPP.
DEFINE_VAPI_MSG_IDS_VXLAN_API_JSON
bool operator==(const dump_cmd &i) const
Comparison operator - only used for UT.
A type declaration of an interface handle in VPP.
bool operator==(const delete_cmd &i) const
Comparison operator - only used for UT.
std::string to_string() const
convert to string format for debug purposes
static const rc_t OK
The HW write was successfull.
dump_cmd()
Default Constructor.
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
void insert_interface()
add the created interface to the DB
The VPP Object Model (VOM) library.
void set(const rc_t &rc)
Set the HW return code - should only be called from the family of Command objects.
uint32_t vni
The VNI of the endpoint.
std::string to_string() const
Debug print function.
boost::asio::ip::address src
The src IP address of the endpoint.
HW::item< handle_t > & m_hw_item
A reference to an object's HW::item that the command will update.
delete_cmd(HW::item< handle_t > &item, const vxlan_tunnel::endpoint_t &ep)
delete command constructor taking HW item to update and the endpoint values
HW::item< handle_t > & item()
return the HW item the command updates
vapi::Vxlan_add_del_tunnel msg_t
convenient typedef