Merge branch 'dev' into edge

This commit is contained in:
Adam Ierymenko 2019-08-14 10:53:03 -07:00
commit 573d3eea87
No known key found for this signature in database
GPG Key ID: 1657198823E52A61

View File

@ -230,6 +230,11 @@ void Multicaster::send(
}
}
} else {
if (gs.txQueue.size() >= ZT_TX_QUEUE_SIZE) {
RR->t->outgoingNetworkFrameDropped(tPtr,network,src,mg.mac(),etherType,0,len,"multicast TX queue is full");
return;
}
const unsigned int gatherLimit = (limit - (unsigned int)gs.members.size()) + 1;
if ((gs.members.empty())||((now - gs.lastExplicitGather) >= ZT_MULTICAST_EXPLICIT_GATHER_DELAY)) {