diff options
author | Andrea Shepard <andrea@torproject.org> | 2016-08-20 04:36:37 +0000 |
---|---|---|
committer | Andrea Shepard <andrea@torproject.org> | 2016-08-20 04:36:37 +0000 |
commit | 31028af4404c06088ea1eb47309ce8c3154150f1 (patch) | |
tree | 078321394a33d1da1cf737ca67631e0c04e241f4 /src/or/or.h | |
parent | 3efe92ba58137022dd6c61cff9823813218a1a14 (diff) | |
download | tor-31028af4404c06088ea1eb47309ce8c3154150f1.tar.gz tor-31028af4404c06088ea1eb47309ce8c3154150f1.zip |
Add DisableOOSCheck option, on by default until we have better heuristics
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/or.h b/src/or/or.h index 262085ea62..7eaeac8ecd 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4458,6 +4458,9 @@ typedef struct { * participate in the protocol. If on (default), a flag is added to the * vote indicating participation. */ int AuthDirSharedRandomness; + + /** If 1, we skip all OOS checks. */ + int DisableOOSCheck; } or_options_t; /** Persistent state for an onion router, as saved to disk. */ |