mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-01-31 00:23:58 +00:00
Don't need to check peer version for every item in txQueue since there is only one peer.
This commit is contained in:
parent
0fd562bebc
commit
7c0f5e97e1
@ -386,17 +386,15 @@ void Multicaster::_add(uint64_t now,uint64_t nwid,const MulticastGroup &mg,Multi
|
|||||||
//TRACE("..MC %s joined multicast group %.16llx/%s via %s",member.toString().c_str(),nwid,mg.toString().c_str(),((learnedFrom) ? learnedFrom.toString().c_str() : "(direct)"));
|
//TRACE("..MC %s joined multicast group %.16llx/%s via %s",member.toString().c_str(),nwid,mg.toString().c_str(),((learnedFrom) ? learnedFrom.toString().c_str() : "(direct)"));
|
||||||
|
|
||||||
// Try to send to any outgoing multicasts that are waiting for more recipients
|
// Try to send to any outgoing multicasts that are waiting for more recipients
|
||||||
for(std::list<OutboundMulticast>::iterator tx(gs.txQueue.begin());tx!=gs.txQueue.end();) {
|
// TODO / LEGACY: don't send new multicast frame to old peers (if we know their version)
|
||||||
{ // TODO / LEGACY: don't send new multicast frame to old peers (if we know their version)
|
SharedPtr<Peer> p(RR->topology->getPeer(member));
|
||||||
SharedPtr<Peer> p(RR->topology->getPeer(member));
|
if ((!p)||(!p->remoteVersionKnown())||(p->remoteVersionMajor() >= 1)) {
|
||||||
if ((p)&&(p->remoteVersionKnown())&&(p->remoteVersionMajor() < 1))
|
for(std::list<OutboundMulticast>::iterator tx(gs.txQueue.begin());tx!=gs.txQueue.end();) {
|
||||||
continue;
|
tx->sendIfNew(RR,member);
|
||||||
|
if (tx->atLimit())
|
||||||
|
gs.txQueue.erase(tx++);
|
||||||
|
else ++tx;
|
||||||
}
|
}
|
||||||
|
|
||||||
tx->sendIfNew(RR,member);
|
|
||||||
if (tx->atLimit())
|
|
||||||
gs.txQueue.erase(tx++);
|
|
||||||
else ++tx;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user