replace txQueue list by vector for faster memory access and less allocations
This commit is contained in:
parent
bd7e4ab695
commit
0073d0f694
2 changed files with 13 additions and 9 deletions
|
@ -70,7 +70,7 @@ private:
|
|||
MulticastGroupStatus() : lastExplicitGather(0) {}
|
||||
|
||||
uint64_t lastExplicitGather;
|
||||
std::list<OutboundMulticast> txQueue; // pending outbound multicasts
|
||||
std::vector<OutboundMulticast> txQueue; // pending outbound multicasts
|
||||
std::vector<MulticastGroupMember> members; // members of this group
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue