diff options
author | Joseph Henry <josephjah@gmail.com> | 2018-06-13 14:50:37 -0700 |
---|---|---|
committer | Joseph Henry <josephjah@gmail.com> | 2018-06-13 14:50:37 -0700 |
commit | f8005b88adfe93af477528bec748882da8fa9bea (patch) | |
tree | 6c7390e572483b9e0bb8c1ab9923e84ab3478e6d /node/Peer.hpp | |
parent | 0faa655b834be45d379c84769604b5c43f734650 (diff) | |
download | infinitytier-f8005b88adfe93af477528bec748882da8fa9bea.tar.gz infinitytier-f8005b88adfe93af477528bec748882da8fa9bea.zip |
Minor cleanup. More efficient push() operation for RingBuffer
Diffstat (limited to 'node/Peer.hpp')
-rw-r--r-- | node/Peer.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/node/Peer.hpp b/node/Peer.hpp index 21e8cbf2..9361f665 100644 --- a/node/Peer.hpp +++ b/node/Peer.hpp @@ -678,8 +678,8 @@ private: bool _linkIsRedundant; bool _remotePeerMultipathEnabled; - uint64_t _lastAggregateStatsReport; - uint64_t _lastAggregateAllocation; + int64_t _lastAggregateStatsReport; + int64_t _lastAggregateAllocation; char _interfaceListStr[256]; // 16 characters * 16 paths in a link }; |