Преглед на файлове

Actually, dont send CREATE_FAST cells at all for now

svn:r4163
Nick Mathewson преди 20 години
родител
ревизия
830ac87611
променени са 1 файла, в които са добавени 3 реда и са изтрити 2 реда
  1. 3 2
      src/or/circuitbuild.c

+ 3 - 2
src/or/circuitbuild.c

@@ -446,8 +446,9 @@ int circuit_send_next_onion_skin(circuit_t *circ) {
       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.
        */