[or-cvs] r9129: turn TunnelDirConns on by default. that's what alpha release (in tor/trunk: . src/or)

arma at seul.org arma at seul.org
Fri Dec 15 21:06:23 UTC 2006


Author: arma
Date: 2006-12-15 16:06:21 -0500 (Fri, 15 Dec 2006)
New Revision: 9129

Modified:
   tor/trunk/ChangeLog
   tor/trunk/src/or/config.c
Log:
turn TunnelDirConns on by default.
that's what alpha releases are for, right?


Modified: tor/trunk/ChangeLog
===================================================================
--- tor/trunk/ChangeLog	2006-12-15 19:56:56 UTC (rev 9128)
+++ tor/trunk/ChangeLog	2006-12-15 21:06:21 UTC (rev 9129)
@@ -2,7 +2,8 @@
   o Major features:
     - Enable "BEGIN_DIR" cells: prefer to connect to the directory
       server via TLS so we do encrypted directory requests rather than
-      plaintext. Only used if you enable the TunnelDirConns config option.
+      plaintext. On by default; disable via the TunnelDirConns config
+      option if you like.
 
   o Minor features:
     - Start using the state file to store bandwidth accounting data:

Modified: tor/trunk/src/or/config.c
===================================================================
--- tor/trunk/src/or/config.c	2006-12-15 19:56:56 UTC (rev 9128)
+++ tor/trunk/src/or/config.c	2006-12-15 21:06:21 UTC (rev 9129)
@@ -247,7 +247,7 @@
   OBSOLETE("TrafficShaping"),
   VAR("TransListenAddress",  LINELIST, TransListenAddress,   NULL),
   VAR("TransPort",           UINT,     TransPort,            "0"),
-  VAR("TunnelDirConns",      BOOL,     TunnelDirConns,       "0"),
+  VAR("TunnelDirConns",      BOOL,     TunnelDirConns,       "1"),
   VAR("UseEntryGuards",      BOOL,     UseEntryGuards,       "1"),
   VAR("User",                STRING,   User,                 NULL),
   VAR("V1AuthoritativeDirectory",BOOL, V1AuthoritativeDir,   "0"),



More information about the tor-commits mailing list