diff options
author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-08-03 18:04:08 -0700 |
---|---|---|
committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-08-03 18:04:08 -0700 |
commit | 7e6e56e2bce240a8d3a4f2825d3f110109a541b6 (patch) | |
tree | b4eb7582e8500dcf4c224571b048dab6d0afda9c /include | |
parent | 67cb03742e09f7ad83c2edd80e0a8ffbfcfa6285 (diff) | |
download | infinitytier-7e6e56e2bce240a8d3a4f2825d3f110109a541b6.tar.gz infinitytier-7e6e56e2bce240a8d3a4f2825d3f110109a541b6.zip |
Bunch of work on pushing and replication of tags and capabilities, and protocol cleanup.
Diffstat (limited to 'include')
-rw-r--r-- | include/ZeroTierOne.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/ZeroTierOne.h b/include/ZeroTierOne.h index db405c08..9679cf64 100644 --- a/include/ZeroTierOne.h +++ b/include/ZeroTierOne.h @@ -97,11 +97,6 @@ extern "C" { #define ZT_MAX_NETWORK_SPECIALISTS 256 /** - * Maximum number of static physical to ZeroTier address mappings (typically relays, etc.) - */ -#define ZT_MAX_NETWORK_PINNED 16 - -/** * Maximum number of multicast group subscriptions per network */ #define ZT_MAX_NETWORK_MULTICAST_SUBSCRIPTIONS 4096 @@ -112,6 +107,16 @@ extern "C" { #define ZT_MAX_NETWORK_RULES 256 /** + * Maximum number of per-node capabilities per network + */ +#define ZT_MAX_NETWORK_CAPABILITIES 64 + +/** + * Maximum number of per-node tags per network + */ +#define ZT_MAX_NETWORK_TAGS 16 + +/** * Maximum number of direct network paths to a given peer */ #define ZT_MAX_PEER_NETWORK_PATHS 4 @@ -127,11 +132,6 @@ extern "C" { #define ZT_MAX_CAPABILITY_RULES 64 /** - * Maximum length of a capbility's short descriptive name - */ -#define ZT_MAX_CAPABILITY_NAME_LENGTH 63 - -/** * Global maximum length for capability chain of custody (including initial issue) */ #define ZT_MAX_CAPABILITY_CUSTODY_CHAIN_LENGTH 7 |