From 960ceb479155146455d8c84c002b964cc0e1d47e Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Mon, 1 Jun 2015 17:50:44 -0700 Subject: Rest of GitHub issue #140 implementation. --- node/OutboundMulticast.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'node/OutboundMulticast.cpp') diff --git a/node/OutboundMulticast.cpp b/node/OutboundMulticast.cpp index 80dd661c..f62046be 100644 --- a/node/OutboundMulticast.cpp +++ b/node/OutboundMulticast.cpp @@ -108,14 +108,14 @@ void OutboundMulticast::sendOnly(const RuntimeEnvironment *RR,const Address &toA _packetWithCom.newInitializationVector(); _packetWithCom.setDestination(toAddr); //TRACE(">>MC %.16llx -> %s (with COM)",(unsigned long long)this,toAddr.toString().c_str()); - RR->sw->send(_packetWithCom,true); + RR->sw->send(_packetWithCom,true,_nwid); return; } } //TRACE(">>MC %.16llx -> %s (without COM)",(unsigned long long)this,toAddr.toString().c_str()); _packetNoCom.newInitializationVector(); _packetNoCom.setDestination(toAddr); - RR->sw->send(_packetNoCom,true); + RR->sw->send(_packetNoCom,true,_nwid); } } // namespace ZeroTier -- cgit v1.2.3