summaryrefslogtreecommitdiffstats
path: root/extras/vom/vom/neighbour_cmds.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'extras/vom/vom/neighbour_cmds.hpp')
-rw-r--r--extras/vom/vom/neighbour_cmds.hpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/extras/vom/vom/neighbour_cmds.hpp b/extras/vom/vom/neighbour_cmds.hpp
index 388dbf1b7ba..d43a6fe8f3b 100644
--- a/extras/vom/vom/neighbour_cmds.hpp
+++ b/extras/vom/vom/neighbour_cmds.hpp
@@ -37,7 +37,8 @@ public:
create_cmd(HW::item<bool>& item,
handle_t itf,
const mac_address_t& mac,
- const boost::asio::ip::address& ip_addr);
+ const boost::asio::ip::address& ip_addr,
+ const neighbour::flags_t &flags);
/**
* Issue the command to VPP/HW
@@ -58,6 +59,7 @@ private:
handle_t m_itf;
mac_address_t m_mac;
boost::asio::ip::address m_ip_addr;
+ const neighbour::flags_t &m_flags;
};
/**
@@ -73,7 +75,8 @@ public:
delete_cmd(HW::item<bool>& item,
handle_t itf,
const mac_address_t& mac,
- const boost::asio::ip::address& ip_addr);
+ const boost::asio::ip::address& ip_addr,
+ const neighbour::flags_t &flags);
/**
* Issue the command to VPP/HW
@@ -94,6 +97,7 @@ private:
handle_t m_itf;
mac_address_t m_mac;
boost::asio::ip::address m_ip_addr;
+ const neighbour::flags_t &m_flags;
};
/**