summaryrefslogtreecommitdiff
path: root/node/Multicaster.hpp
diff options
context:
space:
mode:
authorAdam Ierymenko <adam.ierymenko@gmail.com>2014-10-28 15:33:10 -0700
committerAdam Ierymenko <adam.ierymenko@gmail.com>2014-10-28 15:33:10 -0700
commit4dec598fb888e24e663c8e32c499b82b74086534 (patch)
tree8bbe21c10747b690b2c7cfaf36b1032aad969986 /node/Multicaster.hpp
parent3e948fcd9327d85d3a55e35156aa5d56e6793d80 (diff)
downloadinfinitytier-4dec598fb888e24e663c8e32c499b82b74086534.tar.gz
infinitytier-4dec598fb888e24e663c8e32c499b82b74086534.zip
Make multicast gather slightly more aggressive, and add total to list command in testnet.
Diffstat (limited to 'node/Multicaster.hpp')
-rw-r--r--node/Multicaster.hpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/node/Multicaster.hpp b/node/Multicaster.hpp
index ed9c0d30..9951775e 100644
--- a/node/Multicaster.hpp
+++ b/node/Multicaster.hpp
@@ -72,10 +72,9 @@ private:
struct MulticastGroupStatus
{
- MulticastGroupStatus() : lastExplicitGather(0),lastImplicitGather(0) {}
+ MulticastGroupStatus() : lastExplicitGather(0) {}
uint64_t lastExplicitGather;
- uint64_t lastImplicitGather;
std::list<OutboundMulticast> txQueue; // pending outbound multicasts
std::vector<MulticastGroupMember> members; // members of this group
};