diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-08 18:25:40 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-08 18:25:40 -0700 |
commit | d9e9b60a98a9acc1bc2b078f95541063bdef5db4 (patch) | |
tree | 9fb37b1a8a3280031f4731e123990616be53829a /include | |
parent | e34bc961dbf85bb7a1d0a12637f306fe81c9aef6 (diff) | |
download | infinitytier-d9e9b60a98a9acc1bc2b078f95541063bdef5db4.tar.gz infinitytier-d9e9b60a98a9acc1bc2b078f95541063bdef5db4.zip |
Node status and network list.
Diffstat (limited to 'include')
-rw-r--r-- | include/ZeroTierOne.h | 16 |
1 files changed, 3 insertions, 13 deletions
diff --git a/include/ZeroTierOne.h b/include/ZeroTierOne.h index ac2684f0..10b6d37f 100644 --- a/include/ZeroTierOne.h +++ b/include/ZeroTierOne.h @@ -96,22 +96,17 @@ extern "C" { /** * Maximum number of multicast group subscriptions per network */ -#define ZT1_MAX_NETWORK_MULTICAST_SUBSCRIPTIONS 8194 - -/** - * Feature flag: this is an official ZeroTier, Inc. binary build (built with ZT_OFFICIAL_RELEASE) - */ -#define ZT1_FEATURE_FLAG_OFFICIAL 0x00000001 +#define ZT1_MAX_NETWORK_MULTICAST_SUBSCRIPTIONS 4096 /** * Feature flag: ZeroTier One was built to be thread-safe -- concurrent processXXX() calls are okay */ -#define ZT1_FEATURE_FLAG_THREAD_SAFE 0x00000002 +#define ZT1_FEATURE_FLAG_THREAD_SAFE 0x00000001 /** * Feature flag: FIPS compliant build (not available yet, but reserved for future use if we ever do this) */ -#define ZT1_FEATURE_FLAG_FIPS 0x00000004 +#define ZT1_FEATURE_FLAG_FIPS 0x00000002 /****************************************************************************/ /* Structures and other types */ @@ -298,11 +293,6 @@ typedef struct * True if some kind of connectivity appears available */ int online; - - /** - * Current maximum link desperation metric - */ - unsigned int desperation; } ZT1_NodeStatus; /** |