aboutsummaryrefslogtreecommitdiff
path: root/src/or/circuitbuild.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2005-03-31 19:26:33 +0000
committerRoger Dingledine <arma@torproject.org>2005-03-31 19:26:33 +0000
commit1f5c8335e8e8bd82afa5b85750f09c8779c285e2 (patch)
tree258885282e889c239ddab120eaadbd352e138f0d /src/or/circuitbuild.c
parentc2a05e1ca93656d98cfbb19ee05e472b941516e6 (diff)
downloadtor-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.c2
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");