21 namespace lldp_binding_cmds {
25 const std::string& port_desc)
28 , m_port_desc(port_desc)
35 return ((m_itf == other.m_itf) && (m_port_desc == other.m_port_desc));
41 msg_t req(con.
ctx(), std::ref(*
this));
43 auto& payload = req.get_request().get_payload();
44 payload.sw_if_index = m_itf.
value();
47 memcpy(payload.port_desc, m_port_desc.c_str(),
48 std::min(
sizeof(payload.port_desc), m_port_desc.length()));
60 <<
" port_desc:" << m_port_desc;
74 return (m_itf == other.m_itf);
80 msg_t req(con.
ctx(), std::ref(*
this));
82 auto& payload = req.get_request().get_payload();
83 payload.sw_if_index = m_itf.
value();
static const rc_t NOOP
The HW write/update action was/has not been attempted.
std::string to_string() const
convert to string format for debug purposes
uint32_t value() const
get the value of the handle
Error codes that VPP will return during a HW write.
rc_t wait()
Wait on the commands promise.
std::string to_string() const
convert to string format for debug purposes
bool operator==(const unbind_cmd &i) const
Comparison operator - only used for UT.
A representation of the connection to VPP.
bool operator==(const bind_cmd &i) const
Comparison operator - only used for UT.
unbind_cmd(HW::item< bool > &item, const handle_t &itf)
Constructor.
A base class for all RPC commands to VPP.
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
bind_cmd(HW::item< bool > &item, const handle_t &itf, const std::string &port_desc)
Constructor.
DEFINE_VAPI_MSG_IDS_LLDP_API_JSON
A cmd class that Unbinds Lldp Config from an interface.
std::string to_string() const
convert to string format for debug purposes
A type declaration of an interface handle in VPP.
static const rc_t OK
The HW write was successfull.
A command class that binds the LLDP config to the interface.
vapi::Connection & ctx()
Retrun the VAPI context the commands will use.
rc_t issue(connection &con)
Issue the command to VPP/HW.
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.
rc_t issue(connection &con)
Issue the command to VPP/HW.
std::string to_string() const
convert to string format for debug purposes
HW::item< bool > & m_hw_item
A reference to an object's HW::item that the command will update.
HW::item< bool > & item()
return the HW item the command updates
vapi::Sw_interface_set_lldp msg_t
convenient typedef