diff options
| author | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-09-23 16:08:38 -0700 |
|---|---|---|
| committer | Adam Ierymenko <adam.ierymenko@gmail.com> | 2016-09-23 16:08:38 -0700 |
| commit | 1f74dd4589017bd5bc34b31ff6e09e6875d5e1c7 (patch) | |
| tree | dfda07dae49c2e9813031e1bb426cb5c3e2a2b11 /include | |
| parent | 29711e123febee2696e0f2cada72e7e533d21a8c (diff) | |
| download | infinitytier-1f74dd4589017bd5bc34b31ff6e09e6875d5e1c7.tar.gz infinitytier-1f74dd4589017bd5bc34b31ff6e09e6875d5e1c7.zip | |
Revocation work in progress, add WATCH which is TEE with implicit rate sync (thanks JG@DCVC!), and clean up some cruft in Network.
Diffstat (limited to 'include')
| -rw-r--r-- | include/ZeroTierOne.h | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/include/ZeroTierOne.h b/include/ZeroTierOne.h index e0f6ca28..e43c8541 100644 --- a/include/ZeroTierOne.h +++ b/include/ZeroTierOne.h @@ -517,14 +517,19 @@ enum ZT_VirtualNetworkRuleType ZT_NETWORK_RULE_ACTION_TEE = 2, /** + * Exactly like TEE but frames are dropped if previous TEEs were not acknowledged by the observer + */ + ZT_NETWORK_RULE_ACTION_WATCH = 3, + + /** * Drop and redirect this frame to another node (by ZT address) */ - ZT_NETWORK_RULE_ACTION_REDIRECT = 3, + ZT_NETWORK_RULE_ACTION_REDIRECT = 4, /** * Log if match and if rule debugging is enabled in the build, otherwise does nothing (for developers) */ - ZT_NETWORK_RULE_ACTION_DEBUG_LOG = 4, + ZT_NETWORK_RULE_ACTION_DEBUG_LOG = 5, /** * Maximum ID for an ACTION, anything higher is a MATCH |
