diff options
author | Roger Dingledine <arma@torproject.org> | 2005-03-31 19:26:33 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2005-03-31 19:26:33 +0000 |
commit | 1f5c8335e8e8bd82afa5b85750f09c8779c285e2 (patch) | |
tree | 258885282e889c239ddab120eaadbd352e138f0d /src/or/circuitbuild.c | |
parent | c2a05e1ca93656d98cfbb19ee05e472b941516e6 (diff) | |
download | tor-1f5c8335e8e8bd82afa5b85750f09c8779c285e2.tar.gz tor-1f5c8335e8e8bd82afa5b85750f09c8779c285e2.zip |
still publish your descriptor if orport is reachable but dirport isn't
when building testing circs for orport testing, require high-bandwidth
nodes, so fewer circs fail. complain about unreachable orport separately
from unreachable dirport.
svn:r3935
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index b69f3a3703..67be7417a5 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -467,7 +467,7 @@ int circuit_send_next_onion_skin(circuit_t *circ) { has_completed_circuit=1; log_fn(LOG_NOTICE,"Tor has successfully opened a circuit. Looks like it's working."); /* XXX009 Log a count of known routers here */ - if (server_mode(options) && !check_whether_ports_reachable()) + if (server_mode(options) && !check_whether_orport_reachable()) log_fn(LOG_NOTICE,"Now checking whether ORPort %s %s reachable... (this may take several minutes)", options->DirPort ? "and DirPort" : "", options->DirPort ? "are" : "is"); |