diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-06 15:47:57 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2015-04-06 15:47:57 -0700 |
| commit | a86300c58fe29e9a8626f935f0b3ed25e844b0aa (patch) | |
| tree | 80341df73ad66c70e0cf28ac265e106ddae52994 /include | |
| parent | 488f5bf977887d1e2e744fbf1c027068bc4f7524 (diff) | |
| download | infinitytier-a86300c58fe29e9a8626f935f0b3ed25e844b0aa.tar.gz infinitytier-a86300c58fe29e9a8626f935f0b3ed25e844b0aa.zip | |
Network build fixes and cleanup of remaining internal references to _tap
Diffstat (limited to 'include')
| -rw-r--r-- | include/ZeroTierOne.h | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/include/ZeroTierOne.h b/include/ZeroTierOne.h index 41efcee5..298b8157 100644 --- a/include/ZeroTierOne.h +++ b/include/ZeroTierOne.h @@ -252,12 +252,12 @@ enum ZT1_VirtualNetworkStatus /** * Waiting for network configuration (also means revision == 0) */ - ZT1_NETWORK_STATUS_WAITING = 0, + ZT1_NETWORK_STATUS_REQUESTING_CONFIGURATION = 0, /** * Configuration received and we are authorized */ - ZT1_NETWORK_STATUS_AUTHORIZED = 1, + ZT1_NETWORK_STATUS_OK = 1, /** * Netconf master told us 'nope' @@ -267,7 +267,12 @@ enum ZT1_VirtualNetworkStatus /** * Netconf master exists, but this virtual network does not */ - ZT1_NETWORK_STATUS_NOT_FOUND = 3 + ZT1_NETWORK_STATUS_NOT_FOUND = 3, + + /** + * Initialization of network failed or other internal error + */ + ZT1_NETWORK_STATUS_INITIALIZATION_FAILED = 4 }; /** |
