summaryrefslogtreecommitdiffstats
path: root/extras/vom/vom/igmp_listen_cmds.hpp
diff options
context:
space:
mode:
authorOle Troan <ot@cisco.com>2018-12-18 12:23:13 +0100
committerDamjan Marion <dmarion@me.com>2018-12-18 13:30:40 +0000
commit003d5da298b2cd1e20400fb5fdcefce752ca616e (patch)
treef348793bd749e504b80b483191e95168c9df44bd /extras/vom/vom/igmp_listen_cmds.hpp
parent91bfa6e2666c56f79cc97407c929d188cb34e90f (diff)
VAPI/VOM: Removing legacy stats tests, add string type.
Fix misc VAPI/VOM generation and test cases. Change-Id: I1abf9ecdb6f8a2129f11e0a9ed1c0fe04cdf5c47 Signed-off-by: Ole Troan <ot@cisco.com>
Diffstat (limited to 'extras/vom/vom/igmp_listen_cmds.hpp')
-rw-r--r--extras/vom/vom/igmp_listen_cmds.hpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/extras/vom/vom/igmp_listen_cmds.hpp b/extras/vom/vom/igmp_listen_cmds.hpp
index c062358e4dd..5bfea47914b 100644
--- a/extras/vom/vom/igmp_listen_cmds.hpp
+++ b/extras/vom/vom/igmp_listen_cmds.hpp
@@ -36,7 +36,7 @@ public:
*/
listen_cmd(HW::item<bool>& item,
const handle_t& itf,
- const boost::asio::ip::address& gaddr,
+ const boost::asio::ip::address_v4& gaddr,
const igmp_listen::src_addrs_t& saddrs);
/**
@@ -62,7 +62,7 @@ private:
/**
* The igmp group to bind
*/
- const boost::asio::ip::address& m_gaddr;
+ const boost::asio::ip::address_v4& m_gaddr;
/**
* The igmp srouce specific addresses to listen them
@@ -81,7 +81,7 @@ public:
*/
unlisten_cmd(HW::item<bool>& item,
const handle_t& itf,
- const boost::asio::ip::address& gaddr);
+ const boost::asio::ip::address_v4& gaddr);
/**
* Issue the command to VPP/HW
@@ -107,7 +107,7 @@ private:
/**
* The igmp group to unlisten
*/
- const boost::asio::ip::address& m_gaddr;
+ const boost::asio::ip::address_v4& m_gaddr;
};
/**