diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-12-19 10:00:25 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-12-19 10:08:22 -0500 |
commit | cde5abfdc6381e618f9649dd00f74d91d65848d7 (patch) | |
tree | 53dcc2493f7f437ef495c1a19f1ab3da9fea4bf1 /src/app/config | |
parent | be9bc5981f21a73508e32207fd197b513a6f01be (diff) | |
download | tor-cde5abfdc6381e618f9649dd00f74d91d65848d7.tar.gz tor-cde5abfdc6381e618f9649dd00f74d91d65848d7.zip |
Move TestingDirAuthTimeToLearnReachability into 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 | 5 |
2 files changed, 0 insertions, 6 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index 262013de4c..3e1549b705 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -392,7 +392,6 @@ static const config_var_t option_vars_[] = { V(DisableOOSCheck, BOOL, "1"), V(DisableNetwork, BOOL, "0"), V(DirAllowPrivateAddresses, BOOL, "0"), - V(TestingAuthDirTimeToLearnReachability, INTERVAL, "30 minutes"), OBSOLETE("DirListenAddress"), V(DirPolicy, LINELIST, NULL), VPORT(DirPort), diff --git a/src/app/config/or_options_st.h b/src/app/config/or_options_st.h index 2796aaba78..a38eae40f6 100644 --- a/src/app/config/or_options_st.h +++ b/src/app/config/or_options_st.h @@ -686,11 +686,6 @@ struct or_options_t { voting. Only altered on testing networks. */ int TestingV3AuthVotingStartOffset; - /** If an authority has been around for less than this amount of time, it - * does not believe its reachability information is accurate. Only - * altered on testing networks. */ - int TestingAuthDirTimeToLearnReachability; - /** Clients don't download any descriptor this recent, since it will * probably not have propagated to enough caches. Only altered on testing * networks. */ |