diff options
author | Roger Dingledine <arma@torproject.org> | 2013-03-10 20:40:15 -0400 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2013-03-10 20:40:15 -0400 |
commit | f8960ea22bde03ae7c4cd60af395a541fb36354c (patch) | |
tree | 1dcce484a21a3a1b1de08f3a7210e08313410d80 | |
parent | 926b3d77f18d2345a70f953560f5a5312992aa73 (diff) | |
download | tor-f8960ea22bde03ae7c4cd60af395a541fb36354c.tar.gz tor-f8960ea22bde03ae7c4cd60af395a541fb36354c.zip |
set DisableV2DirectoryInfo_ off by default
since it's only enableable by authorities, nobody else would be able
to start their tor
-rw-r--r-- | src/or/config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index 1337056f5d..dad571967e 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -213,7 +213,7 @@ static config_var_t option_vars_[] = { V(DisableAllSwap, BOOL, "0"), V(DisableDebuggerAttachment, BOOL, "1"), V(DisableIOCP, BOOL, "1"), - V(DisableV2DirectoryInfo_, BOOL, "1"), + V(DisableV2DirectoryInfo_, BOOL, "0"), V(DynamicDHGroups, BOOL, "0"), VPORT(DNSPort, LINELIST, NULL), V(DNSListenAddress, LINELIST, NULL), |