mirror of
https://github.com/zerotier/ZeroTierOne.git
synced 2025-06-06 12:33:44 +02:00
Bump protocol version to 10
This commit is contained in:
parent
4743ad0b16
commit
cacdb445c7
4 changed files with 33 additions and 28 deletions
|
@ -67,9 +67,12 @@
|
||||||
* + Multipart network configurations for large network configs
|
* + Multipart network configurations for large network configs
|
||||||
* + Tags and Capabilities
|
* + Tags and Capabilities
|
||||||
* + Inline push of CertificateOfMembership deprecated
|
* + Inline push of CertificateOfMembership deprecated
|
||||||
* 9 - 1.2.0 ... CURRENT
|
* 9 - 1.2.0 ... 1.2.14
|
||||||
|
* 10 - 1.4.0 ... CURRENT
|
||||||
|
* + Multipath capability and load balancing
|
||||||
|
* + Certificates of Delegation (CoDs) for full root decentralization
|
||||||
*/
|
*/
|
||||||
#define ZT_PROTO_VERSION 9
|
#define ZT_PROTO_VERSION 10
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Minimum supported protocol version
|
* Minimum supported protocol version
|
||||||
|
|
|
@ -650,10 +650,11 @@ void Peer::introduce(void *const tPtr,const int64_t now,const SharedPtr<Peer> &o
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
inline void Peer::processBackgroundPeerTasks(int64_t now)
|
inline void Peer::processBackgroundPeerTasks(const int64_t now)
|
||||||
{
|
{
|
||||||
// Determine current multipath compatibility with other peer
|
// Determine current multipath compatibility with other peer
|
||||||
if ((now - _lastMultipathCompatibilityCheck) >= ZT_PATH_QUALITY_COMPUTE_INTERVAL) {
|
if ((now - _lastMultipathCompatibilityCheck) >= ZT_PATH_QUALITY_COMPUTE_INTERVAL) {
|
||||||
|
//
|
||||||
// Cache number of available paths so that we can short-circuit multipath logic elsewhere
|
// Cache number of available paths so that we can short-circuit multipath logic elsewhere
|
||||||
//
|
//
|
||||||
// We also take notice of duplicate paths (same IP only) because we may have
|
// We also take notice of duplicate paths (same IP only) because we may have
|
||||||
|
@ -663,6 +664,7 @@ inline void Peer::processBackgroundPeerTasks(int64_t now)
|
||||||
//
|
//
|
||||||
// This is done to support the behavior of auto multipath enable/disable
|
// This is done to support the behavior of auto multipath enable/disable
|
||||||
// without user intervention.
|
// without user intervention.
|
||||||
|
//
|
||||||
int currAlivePathCount = 0;
|
int currAlivePathCount = 0;
|
||||||
int duplicatePathsFound = 0;
|
int duplicatePathsFound = 0;
|
||||||
for (unsigned int i=0;i<ZT_MAX_PEER_NETWORK_PATHS;++i) {
|
for (unsigned int i=0;i<ZT_MAX_PEER_NETWORK_PATHS;++i) {
|
||||||
|
|
|
@ -419,7 +419,7 @@ public:
|
||||||
*
|
*
|
||||||
* @param now Current time
|
* @param now Current time
|
||||||
*/
|
*/
|
||||||
inline void processBackgroundPeerTasks(int64_t now);
|
inline void processBackgroundPeerTasks(const int64_t now);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Record that the remote peer does have multipath enabled. As is evident by the receipt of a VERB_ACK
|
* Record that the remote peer does have multipath enabled. As is evident by the receipt of a VERB_ACK
|
||||||
|
|
Loading…
Add table
Reference in a new issue