aboutsummaryrefslogtreecommitdiff
path: root/src/or/circuit.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2004-04-08 03:53:39 +0000
committerNick Mathewson <nickm@torproject.org>2004-04-08 03:53:39 +0000
commit2a01e3ad10f407d2c46950f3386af41d8376cefe (patch)
treeb7008c4716013dabad64cecab185d1a37ca8f247 /src/or/circuit.c
parent299df7117c54f114ebc4775b9ad18ea09a39c4b5 (diff)
downloadtor-2a01e3ad10f407d2c46950f3386af41d8376cefe.tar
tor-2a01e3ad10f407d2c46950f3386af41d8376cefe.tar.gz
Launch intro services after launching connections; allow ORs to build circuits through as-yet-unconnectd ORs
svn:r1562
Diffstat (limited to 'src/or/circuit.c')
-rw-r--r--src/or/circuit.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/src/or/circuit.c b/src/or/circuit.c
index 7da6fe22a..0c2dfad27 100644
--- a/src/or/circuit.c
+++ b/src/or/circuit.c
@@ -1268,11 +1268,6 @@ static circuit_t *circuit_establish_circuit(uint8_t purpose,
if(!n_conn || n_conn->state != OR_CONN_STATE_OPEN) { /* not currently connected */
circ->n_addr = firsthop->addr;
circ->n_port = firsthop->or_port;
- if(options.ORPort) { /* we would be connected if he were up. and he's not. */
- log_fn(LOG_INFO,"Route's firsthop isn't connected.");
- circuit_mark_for_close(circ);
- return NULL;
- }
if(!n_conn) { /* launch the connection */
n_conn = connection_or_connect(firsthop);