Ver código fonte

Turn on microdescriptors for clients

Nick Mathewson 13 anos atrás
pai
commit
b49e561f01
2 arquivos alterados com 6 adições e 1 exclusões
  1. 5 0
      changes/microdescs_on
  2. 1 1
      src/or/config.c

+ 5 - 0
changes/microdescs_on

@@ -0,0 +1,5 @@
+  o Major features:
+    - The microdescriptor system is now on by default for clients. This
+      allows clients to use Tor while downloading a much smaller amount
+      of directory information. To disable it, set "UseMicrodescriptors 0"
+      in your torrc file.

+ 1 - 1
src/or/config.c

@@ -390,7 +390,7 @@ static config_var_t _option_vars[] = {
   V(UpdateBridgesFromAuthority,  BOOL,     "0"),
   V(UseBridges,                  BOOL,     "0"),
   V(UseEntryGuards,              BOOL,     "1"),
-  V(UseMicrodescriptors,         AUTOBOOL, "0"),
+  V(UseMicrodescriptors,         AUTOBOOL, "auto"),
   V(User,                        STRING,   NULL),
   VAR("V1AuthoritativeDirectory",BOOL, V1AuthoritativeDir,   "0"),
   VAR("V2AuthoritativeDirectory",BOOL, V2AuthoritativeDir,   "0"),