replace txQueue list by vector for faster memory access and less allocations

This commit is contained in:
Moritz Warning 2015-06-19 00:24:17 +02:00
parent bd7e4ab695
commit 0073d0f694
2 changed files with 13 additions and 9 deletions

View file

@ -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
};