diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-12-19 09:43:25 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-12-19 09:43:25 -0500 |
commit | 77dea66e19404a4c07f0e738efb7710f542037ed (patch) | |
tree | 8c43ed8c3eaf6be8657ae193a64dfd47ff837deb /src/app | |
parent | b1d029b9a13ffd3cc69bbbebf8d7d2b381751a59 (diff) | |
download | tor-77dea66e19404a4c07f0e738efb7710f542037ed.tar.gz tor-77dea66e19404a4c07f0e738efb7710f542037ed.zip |
Move MinUptimeHidServDirectoryV2 to dirauth module.
Diffstat (limited to 'src/app')
-rw-r--r-- | src/app/config/config.c | 1 | ||||
-rw-r--r-- | src/app/config/or_options_st.h | 3 |
2 files changed, 0 insertions, 4 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index 06a0110e4a..4b47894cc1 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -712,7 +712,6 @@ static const config_var_t option_vars_[] = { OwningControllerProcess, NULL), VAR_NODUMP_IMMUTABLE("__OwningControllerFD", UINT64, OwningControllerFD, UINT64_MAX_STRING), - V(MinUptimeHidServDirectoryV2, INTERVAL, "96 hours"), V(TestingServerDownloadInitialDelay, CSV_INTERVAL, "0"), V(TestingClientDownloadInitialDelay, CSV_INTERVAL, "0"), V(TestingServerConsensusDownloadInitialDelay, CSV_INTERVAL, "0"), diff --git a/src/app/config/or_options_st.h b/src/app/config/or_options_st.h index 46c709622d..09edc21a79 100644 --- a/src/app/config/or_options_st.h +++ b/src/app/config/or_options_st.h @@ -257,9 +257,6 @@ struct or_options_t { int FetchServerDescriptors; /**< Do we fetch server descriptors as normal? */ int FetchHidServDescriptors; /**< and hidden service descriptors? */ - int MinUptimeHidServDirectoryV2; /**< As directory authority, accept hidden - * service directories after what time? */ - int FetchUselessDescriptors; /**< Do we fetch non-running descriptors too? */ int AllDirActionsPrivate; /**< Should every directory action be sent * through a Tor circuit? */ |