diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-06-29 11:43:22 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-06-29 11:43:22 -0700 |
| commit | 19735e70505a5f40fedede0b05764f5b1a1ef383 (patch) | |
| tree | 5508270de953d2417e2631eac6cfb0c33ce93d66 /node/IncomingPacket.hpp | |
| parent | bb636466827416c6ca2a73b7ae7fcb7e3c6f18f2 (diff) | |
| download | infinitytier-19735e70505a5f40fedede0b05764f5b1a1ef383.tar.gz infinitytier-19735e70505a5f40fedede0b05764f5b1a1ef383.zip | |
Revert backgrounding of controller requests hack. Controller code is not really parallel anyway and we fixed the perf problem.
Diffstat (limited to 'node/IncomingPacket.hpp')
| -rw-r--r-- | node/IncomingPacket.hpp | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/node/IncomingPacket.hpp b/node/IncomingPacket.hpp index 3be49bf8..cd0b7dcf 100644 --- a/node/IncomingPacket.hpp +++ b/node/IncomingPacket.hpp @@ -58,8 +58,7 @@ public: Packet(), _receiveTime(0), _localAddress(), - _remoteAddress(), - _authenticated(false) + _remoteAddress() { } @@ -83,8 +82,7 @@ public: Packet(data,len), _receiveTime(now), _localAddress(localAddress), - _remoteAddress(remoteAddress), - _authenticated(false) + _remoteAddress(remoteAddress) { } @@ -190,7 +188,6 @@ private: uint64_t _receiveTime; InetAddress _localAddress; InetAddress _remoteAddress; - bool _authenticated; }; } // namespace ZeroTier |
