diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-12-19 09:51:11 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-12-19 09:51:11 -0500 |
commit | be9bc5981f21a73508e32207fd197b513a6f01be (patch) | |
tree | 5fbfcc8772ac42da06b0edc930d7a3b984326fe4 /src/app/config | |
parent | 0c7fd8312341b349f93e97c915234b18d0d014ca (diff) | |
download | tor-be9bc5981f21a73508e32207fd197b513a6f01be.tar.gz tor-be9bc5981f21a73508e32207fd197b513a6f01be.zip |
Move MinMeasuredBWsForAuthToIgnoreAdvertised to dirauth module.
Diffstat (limited to 'src/app/config')
-rw-r--r-- | src/app/config/config.c | 1 | ||||
-rw-r--r-- | src/app/config/or_options_st.h | 4 |
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; |