[or-cvs] r13934: Enable encrypted directory connections by default, so censor (in tor/branches/tor-0_2_0-patches: . src/or)
    arma at seul.org 
    arma at seul.org
       
    Mon Mar 10 07:49:21 UTC 2008
    
    
  
Author: arma
Date: 2008-03-10 03:49:20 -0400 (Mon, 10 Mar 2008)
New Revision: 13934
Modified:
   tor/branches/tor-0_2_0-patches/ChangeLog
   tor/branches/tor-0_2_0-patches/src/or/config.c
Log:
Enable encrypted directory connections by default, so censor
tools that block Tor directory connections based on their plaintext
patterns will no longer work. This means Tor works in certain
censored countries by default again.
Modified: tor/branches/tor-0_2_0-patches/ChangeLog
===================================================================
--- tor/branches/tor-0_2_0-patches/ChangeLog	2008-03-10 07:41:46 UTC (rev 13933)
+++ tor/branches/tor-0_2_0-patches/ChangeLog	2008-03-10 07:49:20 UTC (rev 13934)
@@ -1,4 +1,10 @@
 Changes in version 0.2.0.22-rc - 2008-03-??
+  o Major features:
+    - Enable encrypted directory connections by default, so censor
+      tools that block Tor directory connections based on their plaintext
+      patterns will no longer work. This means Tor works in certain
+      censored countries by default again.
+
   o Minor bugfixes:
     - If we set RelayBandwidthRate and RelayBandwidthBurst very high but
       left BandwidthRate and BandwidthBurst at the default, we would be
Modified: tor/branches/tor-0_2_0-patches/src/or/config.c
===================================================================
--- tor/branches/tor-0_2_0-patches/src/or/config.c	2008-03-10 07:41:46 UTC (rev 13933)
+++ tor/branches/tor-0_2_0-patches/src/or/config.c	2008-03-10 07:49:20 UTC (rev 13934)
@@ -243,7 +243,7 @@
   V(OutboundBindAddress,         STRING,   NULL),
   OBSOLETE("PathlenCoinWeight"),
   V(PidFile,                     STRING,   NULL),
-  V(PreferTunneledDirConns,      BOOL,     "0"),
+  V(PreferTunneledDirConns,      BOOL,     "1"),
   V(ProtocolWarnings,            BOOL,     "0"),
   V(PublishServerDescriptor,     CSV,      "1"),
   V(PublishHidServDescriptors,   BOOL,     "1"),
@@ -289,7 +289,7 @@
   OBSOLETE("TrafficShaping"),
   V(TransListenAddress,          LINELIST, NULL),
   V(TransPort,                   UINT,     "0"),
-  V(TunnelDirConns,              BOOL,     "0"),
+  V(TunnelDirConns,              BOOL,     "1"),
   V(UpdateBridgesFromAuthority,  BOOL,     "0"),
   V(UseBridges,                  BOOL,     "0"),
   V(UseEntryGuards,              BOOL,     "1"),
    
    
More information about the tor-commits
mailing list