diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-03-20 18:49:33 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2014-03-20 18:49:33 -0700 |
| commit | 45e823d27ca83bf893e69c692ef9a842c97e5ffe (patch) | |
| tree | b6d20c1833db7e8b784a6c88af63bbd4b4ea49cb /node/Peer.cpp | |
| parent | 70b736f440f8ffaf7c8047a722d3d1339019b724 (diff) | |
| download | infinitytier-45e823d27ca83bf893e69c692ef9a842c97e5ffe.tar.gz infinitytier-45e823d27ca83bf893e69c692ef9a842c97e5ffe.zip | |
Reworking of paths in Peer work-in-progress, and TCP connect support in SocketManager. Also add FD_SETSIZE checking for the default select implementation of sockets.
Diffstat (limited to 'node/Peer.cpp')
| -rw-r--r-- | node/Peer.cpp | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/node/Peer.cpp b/node/Peer.cpp index 6bfa5b1d..3a214b6a 100644 --- a/node/Peer.cpp +++ b/node/Peer.cpp @@ -34,12 +34,11 @@ namespace ZeroTier { Peer::Peer() : _id(), - _ipv4p(), - _ipv6p(), _lastUsed(0), _lastUnicastFrame(0), _lastMulticastFrame(0), _lastAnnouncedTo(0), + _lastPinged(0), _vMajor(0), _vMinor(0), _vRevision(0), @@ -50,12 +49,11 @@ Peer::Peer() : Peer::Peer(const Identity &myIdentity,const Identity &peerIdentity) throw(std::runtime_error) : _id(peerIdentity), - _ipv4p(), - _ipv6p(), _lastUsed(0), _lastUnicastFrame(0), _lastMulticastFrame(0), _lastAnnouncedTo(0), + _lastPinged(0), _vMajor(0), _vMinor(0), _vRevision(0), |
