[Author Prev][Author Next][Thread Prev][Thread Next][Author Index][Thread Index]
[or-cvs] r9129: turn TunnelDirConns on by default. that's what alpha release (in tor/trunk: . src/or)
- To: or-cvs@xxxxxxxxxxxxx
- Subject: [or-cvs] r9129: turn TunnelDirConns on by default. that's what alpha release (in tor/trunk: . src/or)
- From: arma@xxxxxxxx
- Date: Fri, 15 Dec 2006 16:06:23 -0500 (EST)
- Delivered-to: archiver@seul.org
- Delivered-to: or-cvs-outgoing@seul.org
- Delivered-to: or-cvs@seul.org
- Delivery-date: Fri, 15 Dec 2006 16:06:34 -0500
- Reply-to: or-talk@xxxxxxxxxxxxx
- Sender: owner-or-cvs@xxxxxxxxxxxxx
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"),