22 namespace arp_proxy_config_cmds {
25 const boost::asio::ip::address_v4&
low,
26 const boost::asio::ip::address_v4& high)
35 return ((m_low == o.m_low) && (m_high == o.m_high));
41 msg_t req(con.
ctx(), std::ref(*
this));
43 auto& payload = req.get_request().get_payload();
46 to_api(m_low, payload.proxy.low);
47 to_api(m_high, payload.proxy.hi);
61 <<
" low:" << m_low.to_string() <<
" high:" << m_high.to_string();
67 const boost::asio::ip::address_v4&
low,
68 const boost::asio::ip::address_v4& high)
77 return ((m_low == o.m_low) && (m_high == o.m_high));
83 msg_t req(con.
ctx(), std::ref(*
this));
85 auto& payload = req.get_request().get_payload();
88 to_api(m_low, payload.proxy.low);
89 to_api(m_high, payload.proxy.hi);
102 std::ostringstream s;
104 <<
" low:" << m_low.to_string() <<
" high:" << m_high.to_string();
118 m_dump.reset(
new msg_t(con.
ctx(), std::ref(*
this)));
130 return (
"ARP-proxy-dump");
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.
config_cmd(HW::item< bool > &item, const boost::asio::ip::address_v4 &lo, const boost::asio::ip::address_v4 &high)
Constructor.
Error codes that VPP will return during a HW write.
rc_t issue(connection &con)
Issue the command to VPP/HW.
vapi_enum_ip_neighbor_flags to_api(const neighbour::flags_t &f)
rc_t wait()
Wait on the commands promise.
std::string to_string() const
convert to string format for debug purposes
bool operator==(const unconfig_cmd &i) const
Comparison operator - only used for UT.
std::string to_string() const
convert to string format for debug purposes
A representation of the connection to VPP.
DEFINE_VAPI_MSG_IDS_ARP_API_JSON
bool operator==(const dump_cmd &i) const
Comparison operator - only used for UT.
A base class for all RPC commands to VPP.
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
std::string to_string() const
convert to string format for debug purposes
std::string to_string() const
convert to string format for debug purposes
unconfig_cmd(HW::item< bool > &item, const boost::asio::ip::address_v4 &lo, const boost::asio::ip::address_v4 &hig)
Constructor.
static const rc_t OK
The HW write was successfull.
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
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.
A cmd class that Unconfigs ArpProxy Config from an interface.
A command class that adds the ARP Proxy config.
A cmd class that Dumps all the Proxy ARP configs.
bool operator==(const config_cmd &i) const
Comparison operator - only used for UT.
HW::item< bool > & m_hw_item
A reference to an object's HW::item that the command will update.
rc_t issue(connection &con)
Issue the command to VPP/HW.
HW::item< bool > & item()
return the HW item the command updates
vapi::Proxy_arp_add_del msg_t
convenient typedef