Fix a nasty bug introduced in packet fragmentation a while back during refactoring, and a few other things related to multicast.
This commit is contained in:
parent
faff84e63a
commit
5bb854e504
6 changed files with 27 additions and 17 deletions
|
@ -102,7 +102,7 @@ public:
|
|||
/**
|
||||
* @return True if this outbound multicast has been sent to enough peers
|
||||
*/
|
||||
inline bool atLimit() const throw() { return (_alreadySentTo.size() > _limit); }
|
||||
inline bool atLimit() const throw() { return (_alreadySentTo.size() >= _limit); }
|
||||
|
||||
/**
|
||||
* Just send without checking log
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue