X-Git-Url: https://gerrit.fd.io/r/gitweb?a=blobdiff_plain;f=extras%2Fvom%2Fvom%2Fvxlan_tunnel.cpp;fp=extras%2Fvom%2Fvom%2Fvxlan_tunnel.cpp;h=248aadfeadec54f920405dd1160864d2bbe5ff33;hb=038243064ba0a6b587213ba56fffd9e3fddcf0ee;hp=faf49bd93cd3eadcc6f5f22c29a7662aec1c63ba;hpb=a279d9cf615bd60439085ba103125e6f2fa3b27c;p=vpp.git diff --git a/extras/vom/vom/vxlan_tunnel.cpp b/extras/vom/vom/vxlan_tunnel.cpp index faf49bd93cd..248aadfeade 100644 --- a/extras/vom/vom/vxlan_tunnel.cpp +++ b/extras/vom/vom/vxlan_tunnel.cpp @@ -113,13 +113,15 @@ vxlan_tunnel::vxlan_tunnel(const vxlan_tunnel& o) : interface(o) , m_tep(o.m_tep) , m_mode(o.m_mode) + , m_mcast_itf(o.m_mcast_itf) { } bool vxlan_tunnel::operator==(const vxlan_tunnel& other) const { - return ((m_tep == other.m_tep) && (m_mode == other.m_mode)); + return ((m_tep == other.m_tep) && (m_mode == other.m_mode) && + (m_mcast_itf == other.m_mcast_itf)); } const handle_t& @@ -173,6 +175,8 @@ vxlan_tunnel::to_string() const std::ostringstream s; s << "vxlan-tunnel: " << m_hdl.to_string() << " " << m_mode.to_string() << " " << m_tep.to_string(); + if (m_mcast_itf) + s << " " << m_mcast_itf->to_string(); return (s.str()); }