summaryrefslogtreecommitdiff
path: root/node/Multicaster.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2014-10-09 17:58:31 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2014-10-09 17:58:31 -0700
commit4941c8a1f393c50259ae2cc0f1e8b79068d44af3 (patch)
tree81860de8661732dd62bcc33169bf6db1b663c94d /node/Multicaster.hpp
parentd5e0f7e3e453482bf6e7d6d8cb76a68ecc26b287 (diff)
downloadinfinitytier-4941c8a1f393c50259ae2cc0f1e8b79068d44af3.tar.gz
infinitytier-4941c8a1f393c50259ae2cc0f1e8b79068d44af3.zip
New multicast bug fixes, TRACE improvements, and temporarily disable legacy multicast for debugging purposes.
Diffstat (limited to 'node/Multicaster.hpp')
-rw-r--r--node/Multicaster.hpp4
1 files changed, 2 insertions, 2 deletions
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<uint64_t,MulticastGroup>(nwid,mg)],learnedFrom,member);
+ _add(now,nwid,mg,_groups[std::pair<uint64_t,MulticastGroup>(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<uint64_t,MulticastGroup>,MulticastGroupStatus > _groups;