Add instrumentation to root, add capability to forward to siblings if no path is known to a peer.

This commit is contained in:
Adam Ierymenko 2019-09-03 12:21:57 -07:00
parent 2e7496130c
commit fd6e8d8c5c
No known key found for this signature in database
GPG key ID: C8877CF2D7A5D7F3
4 changed files with 437 additions and 110 deletions

View file

@ -44,7 +44,7 @@ public:
};
private:
inline Mutex(const Mutex &) {}
ZT_ALWAYS_INLINE Mutex(const Mutex &) {}
const Mutex &operator=(const Mutex &) { return *this; }
pthread_mutex_t _mh;
@ -83,7 +83,7 @@ public:
};
private:
inline Mutex(const Mutex &) {}
ZT_ALWAYS_INLINE Mutex(const Mutex &) {}
const Mutex &operator=(const Mutex &) { return *this; }
CRITICAL_SECTION _cs;