From 4941c8a1f393c50259ae2cc0f1e8b79068d44af3 Mon Sep 17 00:00:00 2001 From: Adam Ierymenko Date: Thu, 9 Oct 2014 17:58:31 -0700 Subject: New multicast bug fixes, TRACE improvements, and temporarily disable legacy multicast for debugging purposes. --- node/Multicaster.hpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'node/Multicaster.hpp') diff --git a/node/Multicaster.hpp b/node/Multicaster.hpp index fd9c32d4..74151251 100644 --- a/node/Multicaster.hpp +++ b/node/Multicaster.hpp @@ -96,7 +96,7 @@ public: inline void add(uint64_t now,uint64_t nwid,const MulticastGroup &mg,const Address &learnedFrom,const Address &member) { Mutex::Lock _l(_groups_m); - _add(now,nwid,_groups[std::pair(nwid,mg)],learnedFrom,member); + _add(now,nwid,mg,_groups[std::pair(nwid,mg)],learnedFrom,member); } /** @@ -164,7 +164,7 @@ public: void clean(uint64_t now); private: - void _add(uint64_t now,uint64_t nwid,MulticastGroupStatus &gs,const Address &learnedFrom,const Address &member); + void _add(uint64_t now,uint64_t nwid,const MulticastGroup &mg,MulticastGroupStatus &gs,const Address &learnedFrom,const Address &member); const RuntimeEnvironment *RR; std::map< std::pair,MulticastGroupStatus > _groups; -- cgit v1.2.3