diff options
Diffstat (limited to 'node/Path.hpp')
-rw-r--r-- | node/Path.hpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/node/Path.hpp b/node/Path.hpp index c1fe68d4..c6de6612 100644 --- a/node/Path.hpp +++ b/node/Path.hpp @@ -266,6 +266,9 @@ public: return (p - startAt); } + inline bool operator==(const Path &p) const { return ((p._addr == _addr)&&(p._localAddress == _localAddress)); } + inline bool operator!=(const Path &p) const { return ((p._addr != _addr)||(p._localAddress != _localAddress)); } + private: uint64_t _lastSend; uint64_t _lastReceived; |