diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-12-19 09:07:01 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-12-19 09:19:02 -0500 |
commit | eedab30a7bd5663984264bb5f9ef43cf57450143 (patch) | |
tree | 1c64f572b7daf364b21bdbd410d599b206b51fd4 /src/app | |
parent | bc0f1076d53e57d1a4ba19170a1c27d9eaee34e8 (diff) | |
download | tor-eedab30a7bd5663984264bb5f9ef43cf57450143.tar.gz tor-eedab30a7bd5663984264bb5f9ef43cf57450143.zip |
Move AuthDirHasIPv6Connectivity into 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 | 1 |
2 files changed, 0 insertions, 2 deletions
diff --git a/src/app/config/config.c b/src/app/config/config.c index f3d889edb6..2d1d09e185 100644 --- a/src/app/config/config.c +++ b/src/app/config/config.c @@ -336,7 +336,6 @@ static const config_var_t option_vars_[] = { OBSOLETE("AuthDirListBadDirs"), V(AuthDirListBadExits, BOOL, "0"), OBSOLETE("AuthDirMaxServersPerAuthAddr"), - V(AuthDirHasIPv6Connectivity, BOOL, "0"), VAR("AuthoritativeDirectory", BOOL, AuthoritativeDir, "0"), V(AutomapHostsOnResolve, BOOL, "0"), V(AutomapHostsSuffixes, CSV, ".onion,.exit"), diff --git a/src/app/config/or_options_st.h b/src/app/config/or_options_st.h index 9d58633aab..b8da3cdd09 100644 --- a/src/app/config/or_options_st.h +++ b/src/app/config/or_options_st.h @@ -459,7 +459,6 @@ struct or_options_t { int AuthDirListBadExits; /**< True iff we should list bad exits, * and vote for all other exits as good. */ - int AuthDirHasIPv6Connectivity; /**< Boolean: are we on IPv6? */ int AuthDirPinKeys; /**< Boolean: Do we enforce key-pinning? */ char *AccountingStart; /**< How long is the accounting interval, and when |