diff options
author | Nick Mathewson <nickm@torproject.org> | 2013-03-20 13:34:57 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-03-20 13:34:57 -0400 |
commit | a660fe6fd51cd511cdc610e4a50f06d59cbf74aa (patch) | |
tree | 24151e9895db0e480580a00d5f3a1c1b7314a7ed /src/or/or.h | |
parent | 90d2162f32f511f23449211ad900a880fd384afb (diff) | |
download | tor-a660fe6fd51cd511cdc610e4a50f06d59cbf74aa.tar.gz tor-a660fe6fd51cd511cdc610e4a50f06d59cbf74aa.zip |
Let testing networks override ABSOLUTE_MIN_VALUE_FOR_FAST_FLAG
This adds a new option to fix bug 8508 which broke chutney
networks. The bug was introduced by 317d16de.
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 67315522ed..2b0102de32 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -3910,6 +3910,9 @@ typedef struct { * of certain configuration options. */ int TestingTorNetwork; + /** Minimum value for the Fast flag threshold on testing networks. */ + uint64_t TestingMinFastFlagThreshold; + /** If true, and we have GeoIP data, and we're a bridge, keep a per-country * count of how many client addresses have contacted us so that we can help * the bridge authority guess which countries have blocked access to us. */ |