|
FD.io VPP
v21.06-3-gbb25fbf28
Vector Packet Processing
|
Go to the documentation of this file.
21 namespace lldp_binding_cmds {
28 , m_port_desc(port_desc)
34 return ((m_itf == other.m_itf) && (m_port_desc == other.m_port_desc));
40 msg_t req(
con.ctx(), std::ref(*
this));
42 auto& payload = req.get_request().get_payload();
43 payload.sw_if_index = m_itf.
value();
46 memcpy(payload.port_desc.buf, m_port_desc.c_str(), m_port_desc.length());
47 payload.port_desc.length = m_port_desc.length();
59 <<
" port_desc:" << m_port_desc;
72 return (m_itf == other.m_itf);
78 msg_t req(
con.ctx(), std::ref(*
this));
80 auto& payload = req.get_request().get_payload();
81 payload.sw_if_index = m_itf.
value();
unbind_cmd(HW::item< bool > &item, const handle_t &itf)
Constructor.
rc_t wait()
Wait on the commands promise.
void set(const rc_t &rc)
Set the HW return code - should only be called from the family of Command objects.
The VPP Object Model (VOM) library.
const static rc_t OK
The HW write was successfull.
A cmd class that Unbinds Lldp Config from an interface.
uint32_t value() const
get the value of the handle
A base class for all RPC commands to VPP.
rc_t issue(connection &con)
Issue the command to VPP/HW.
DEFINE_VAPI_MSG_IDS_LLDP_API_JSON
HW::item< bool > & m_hw_item
A reference to an object's HW::item that the command will update.
#define VAPI_CALL(_stmt)
Convenince wrapper macro for error handling in VAPI sends.
A representation of the connection to VPP.
bind_cmd(HW::item< bool > &item, const handle_t &itf, const std::string &port_desc)
Constructor.
const static 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
A type declaration of an interface handle in VPP.
std::string to_string() const
convert to string format for debug purposes
std::string to_string() const
convert to string format for debug purposes
vapi::Sw_interface_set_lldp msg_t
convenient typedef
A command class that binds the LLDP config to the interface.
std::string to_string() const
convert to string format for debug purposes
bool operator==(const bind_cmd &i) const
Comparison operator - only used for UT.
bool operator==(const unbind_cmd &i) const
Comparison operator - only used for UT.
Error codes that VPP will return during a HW write.
rc_t issue(connection &con)
Issue the command to VPP/HW.