21 namespace nat_static_cmds {
25 const boost::asio::ip::address_v4& inside,
26 const boost::asio::ip::address_v4& outside)
37 return ((m_id == other.m_id) && (m_inside == other.m_inside) &&
38 (m_outside == other.m_outside));
44 msg_t req(con.
ctx(), std::ref(*
this));
46 auto& payload = req.get_request().get_payload();
48 payload.addr_only = 1;
49 payload.local_port = 0;
50 payload.external_port = 0;
51 payload.vrf_id = m_id;
52 payload.external_sw_if_index = ~0;
53 to_bytes(m_inside, payload.local_ip_address);
54 to_bytes(m_outside, payload.external_ip_address);
68 <<
" inside:" << m_inside.to_string()
69 <<
" outside:" << m_outside.to_string();
76 const boost::asio::ip::address_v4& inside,
77 const boost::asio::ip::address_v4& outside)
88 return ((m_id == other.m_id) && (m_inside == other.m_inside) &&
89 (m_outside == other.m_outside));
95 msg_t req(con.
ctx(), std::ref(*
this));
97 auto& payload = req.get_request().get_payload();
99 payload.addr_only = 1;
100 payload.local_port = 0;
101 payload.external_port = 0;
102 payload.vrf_id = m_id;
103 payload.external_sw_if_index = ~0;
104 to_bytes(m_inside, payload.local_ip_address);
105 to_bytes(m_outside, payload.external_ip_address);
118 std::ostringstream s;
120 <<
" inside:" << m_inside.to_string()
121 <<
" outside:" << m_outside.to_string();
135 m_dump.reset(
new msg_t(con.
ctx(), std::ref(*
this)));
147 return (
"nat-static-dump");
std::string to_string() const
convert to string format for debug purposes
A cmd class that deletes a NAT 44 static mapping.
uint32_t table_id_t
type def the table-id
static const rc_t NOOP
The HW write/update action was/has not been attempted.
HW::item< bool > & m_hw_item
A reference to an object's HW::item that the command will update.
A command class that creates NAT 44 static mapping.
rc_t issue(connection &con)
Issue the command to VPP/HW.
create_44_cmd(HW::item< bool > &item, route::table_id_t id, const boost::asio::ip::address_v4 &inside, const boost::asio::ip::address_v4 &outside)
Constructor.
Error codes that VPP will return during a HW write.
std::string to_string() const
convert to string format for debug purposes
bool operator==(const dump_44_cmd &i) const
Comparison operator - only used for UT.
std::string to_string() const
convert to string format for debug purposes
bool operator==(const delete_44_cmd &i) const
Comparison operator - only used for UT.
void to_bytes(const boost::asio::ip::address_v6 &addr, uint8_t *array)
A representation of the connection to VPP.
std::string to_string() const
convert to string format for debug purposes
HW::item< bool > & item()
return the HW item the command updates
A base class for all RPC commands to VPP.
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
delete_44_cmd(HW::item< bool > &item, route::table_id_t id, const boost::asio::ip::address_v4 &inside, const boost::asio::ip::address_v4 &outside)
Constructor.
rc_t issue(connection &con)
Issue the command to VPP/HW.
static const rc_t OK
The HW write was successfull.
bool operator==(const create_44_cmd &i) const
Comparison operator - only used for UT.
A cmd class that Dumps all the nat_statics.
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
The VPP Object Model (VOM) library.
rc_t issue(connection &con)
Issue the command to VPP/HW.
void set(const rc_t &rc)
Set the HW return code - should only be called from the family of Command objects.
vapi::Nat44_add_del_static_mapping msg_t
convenient typedef
DEFINE_VAPI_MSG_IDS_NAT_API_JSON
rc_t wait()
Wait on the commands promise.