diff options
author | Nick Mathewson <nickm@torproject.org> | 2005-05-02 22:39:59 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2005-05-02 22:39:59 +0000 |
commit | 830ac876116676b48cf63595aa29d4de75c7ec37 (patch) | |
tree | a9cd1c5343c764ea470f5bb134d43730b4b273cb | |
parent | ab34901263c6593a56c039979e04bf9345932dd1 (diff) | |
download | tor-830ac876116676b48cf63595aa29d4de75c7ec37.tar.gz tor-830ac876116676b48cf63595aa29d4de75c7ec37.zip |
Actually, dont send CREATE_FAST cells at all for now
svn:r4163
-rw-r--r-- | src/or/circuitbuild.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 102230e61c..3734dc4b56 100644 --- a/src/or/circuitbuild.c +++ b/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. */ |