[or-cvs] Actually, dont send CREATE_FAST cells at all for now

Nick Mathewson nickm at seul.org
Mon May 2 22:40:02 UTC 2005


Update of /home/or/cvsroot/tor/src/or
In directory moria.mit.edu:/tmp/cvs-serv21000/src/or

Modified Files:
	circuitbuild.c 
Log Message:
Actually, dont send CREATE_FAST cells at all for now

Index: circuitbuild.c
===================================================================
RCS file: /home/or/cvsroot/tor/src/or/circuitbuild.c,v
retrieving revision 1.110
retrieving revision 1.111
diff -u -d -r1.110 -r1.111
--- circuitbuild.c	2 May 2005 22:35:18 -0000	1.110
+++ circuitbuild.c	2 May 2005 22:39:59 -0000	1.111
@@ -446,8 +446,9 @@
       return -1;
     }
 
-    if (get_options()->ORPort || !router->platform ||
-        !tor_version_as_new_as(router->platform, "0.1.0.6-rc")) {
+    if (1 || /* Disable this '1' once we believe CREATE_FAST works. XXXX */
+        (get_options()->ORPort || !router->platform ||
+         !tor_version_as_new_as(router->platform, "0.1.0.6-rc"))) {
       /* We are an OR, or we are connecting to an old Tor: we should
        * send an old slow create cell.
        */



More information about the tor-commits mailing list