fib: fib api updates
[vpp.git] / extras / vom / vom / neighbour_cmds.cpp
index 5f9e180..758147c 100644 (file)
 
 namespace VOM {
 namespace neighbour_cmds {
-create_cmd::create_cmd(HW::item<bool>& item,
+create_cmd::create_cmd(HW::item<handle_t>& item,
                        handle_t itf,
                        const mac_address_t& mac,
                        const boost::asio::ip::address& ip_addr,
                        const neighbour::flags_t& flags)
-  : rpc_cmd(item)
+  : srpc_cmd(item)
   , m_itf(itf)
   , m_mac(mac)
   , m_ip_addr(ip_addr)
@@ -67,12 +67,12 @@ create_cmd::to_string() const
   return (s.str());
 }
 
-delete_cmd::delete_cmd(HW::item<bool>& item,
+delete_cmd::delete_cmd(HW::item<handle_t>& item,
                        handle_t itf,
                        const mac_address_t& mac,
                        const boost::asio::ip::address& ip_addr,
                        const neighbour::flags_t& flags)
-  : rpc_cmd(item)
+  : srpc_cmd(item)
   , m_itf(itf)
   , m_mac(mac)
   , m_ip_addr(ip_addr)