diff options
author | David Goulet <dgoulet@ev0ke.net> | 2016-04-05 14:43:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-04-07 10:57:59 -0400 |
commit | 40827da3bfafb3191433d4151d48f79c511dcd42 (patch) | |
tree | 15708670690aa920a99c0b9580ecdbc38795969c /src/or/or.h | |
parent | d8a056daed78c9794037931db81b97d596505bb7 (diff) | |
download | tor-40827da3bfafb3191433d4151d48f79c511dcd42.tar.gz tor-40827da3bfafb3191433d4151d48f79c511dcd42.zip |
Turn TestingClientBootstrap* into non-testing options
This changes simply renames them by removing "Testing" in front of them and
they do not require TestingTorNetwork to be enabled anymore.
Fixes #18481
Signed-off-by: David Goulet <dgoulet@ev0ke.net>
Diffstat (limited to 'src/or/or.h')
-rw-r--r-- | src/or/or.h | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/or/or.h b/src/or/or.h index 111d0981d5..592f29502e 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -4188,7 +4188,7 @@ typedef struct { * This schedule is incremented by (potentially concurrent) connection * attempts, unlike other schedules, which are incremented by connection * failures. Only altered on testing networks. */ - smartlist_t *TestingClientBootstrapConsensusAuthorityDownloadSchedule; + smartlist_t *ClientBootstrapConsensusAuthorityDownloadSchedule; /** Schedule for when clients should download consensuses from fallback * directory mirrors if they are bootstrapping (that is, they don't have a @@ -4198,7 +4198,7 @@ typedef struct { * This schedule is incremented by (potentially concurrent) connection * attempts, unlike other schedules, which are incremented by connection * failures. Only altered on testing networks. */ - smartlist_t *TestingClientBootstrapConsensusFallbackDownloadSchedule; + smartlist_t *ClientBootstrapConsensusFallbackDownloadSchedule; /** Schedule for when clients should download consensuses from authorities * if they are bootstrapping (that is, they don't have a usable, reasonably @@ -4208,7 +4208,7 @@ typedef struct { * This schedule is incremented by (potentially concurrent) connection * attempts, unlike other schedules, which are incremented by connection * failures. Only altered on testing networks. */ - smartlist_t *TestingClientBootstrapConsensusAuthorityOnlyDownloadSchedule; + smartlist_t *ClientBootstrapConsensusAuthorityOnlyDownloadSchedule; /** Schedule for when clients should download bridge descriptors. Only * altered on testing networks. */ @@ -4230,17 +4230,17 @@ typedef struct { /** How many times will a client try to fetch a consensus while * bootstrapping using a list of fallback directories, before it gives up? * Only altered on testing networks. */ - int TestingClientBootstrapConsensusMaxDownloadTries; + int ClientBootstrapConsensusMaxDownloadTries; /** How many times will a client try to fetch a consensus while * bootstrapping using only a list of authorities, before it gives up? * Only altered on testing networks. */ - int TestingClientBootstrapConsensusAuthorityOnlyMaxDownloadTries; + int ClientBootstrapConsensusAuthorityOnlyMaxDownloadTries; /** How many simultaneous in-progress connections will we make when trying * to fetch a consensus before we wait for one to complete, timeout, or * error out? Only altered on testing networks. */ - int TestingClientBootstrapConsensusMaxInProgressTries; + int ClientBootstrapConsensusMaxInProgressTries; /** How many times will we try to download a router's descriptor before * giving up? Only altered on testing networks. */ |