diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-06-18 15:42:12 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-06-18 15:42:12 -0700 |
| commit | be4f08a548556bd6e7f22bc48035d11aa319fae8 (patch) | |
| tree | 097a7ac8f52316040f789dd7f12c39b1b0c642ca /node/Multicaster.hpp | |
| parent | 6fc150bddb871ef0b6f3ba6a84a7faf01d8a57a3 (diff) | |
| parent | 0073d0f694f925d925db96d25e2a504abda99722 (diff) | |
| download | infinitytier-be4f08a548556bd6e7f22bc48035d11aa319fae8.tar.gz infinitytier-be4f08a548556bd6e7f22bc48035d11aa319fae8.zip | |
Merge pull request #186 from mwarning/txQueue_vector
replace txQueue list by vector for faster memory access and less allo…
Diffstat (limited to 'node/Multicaster.hpp')
| -rw-r--r-- | node/Multicaster.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/node/Multicaster.hpp b/node/Multicaster.hpp index c6c93b1f..281222b8 100644 --- a/node/Multicaster.hpp +++ b/node/Multicaster.hpp @@ -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 }; |
