aboutsummaryrefslogtreecommitdiff
path: root/src/app/config
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2019-12-19 09:51:11 -0500
committerNick Mathewson <nickm@torproject.org>2019-12-19 09:51:11 -0500
commitbe9bc5981f21a73508e32207fd197b513a6f01be (patch)
tree5fbfcc8772ac42da06b0edc930d7a3b984326fe4 /src/app/config
parent0c7fd8312341b349f93e97c915234b18d0d014ca (diff)
downloadtor-be9bc5981f21a73508e32207fd197b513a6f01be.tar.gz
tor-be9bc5981f21a73508e32207fd197b513a6f01be.zip
Move MinMeasuredBWsForAuthToIgnoreAdvertised to dirauth module.
Diffstat (limited to 'src/app/config')
-rw-r--r--src/app/config/config.c1
-rw-r--r--src/app/config/or_options_st.h4
2 files changed, 0 insertions, 5 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c
index 65a0733e0d..262013de4c 100644
--- a/src/app/config/config.c
+++ b/src/app/config/config.c
@@ -555,7 +555,6 @@ static const config_var_t option_vars_[] = {
OBSOLETE("MaxOnionsPending"),
V(MaxOnionQueueDelay, MSEC_INTERVAL, "1750 msec"),
V(MaxUnparseableDescSizeToLog, MEMUNIT, "10 MB"),
- V(MinMeasuredBWsForAuthToIgnoreAdvertised, INT, "500"),
VAR("MyFamily", LINELIST, MyFamily_lines, NULL),
V(NewCircuitPeriod, INTERVAL, "30 seconds"),
OBSOLETE("NamingAuthoritativeDirectory"),
diff --git a/src/app/config/or_options_st.h b/src/app/config/or_options_st.h
index eaa32f9bf4..2796aaba78 100644
--- a/src/app/config/or_options_st.h
+++ b/src/app/config/or_options_st.h
@@ -670,10 +670,6 @@ struct or_options_t {
/** Location of guardfraction file */
char *GuardfractionFile;
- /** Authority only: minimum number of measured bandwidths we must see
- * before we only believe measured bandwidths to assign flags. */
- int MinMeasuredBWsForAuthToIgnoreAdvertised;
-
/** The length of time that we think an initial consensus should be fresh.
* Only altered on testing networks. */
int TestingV3AuthInitialVotingInterval;