aboutsummaryrefslogtreecommitdiff
path: root/src/or/rendclient.c
diff options
context:
space:
mode:
authorNick Mathewson <nickm@torproject.org>2011-10-10 22:50:52 -0400
committerNick Mathewson <nickm@torproject.org>2011-10-10 22:50:52 -0400
commitbc2d9357f523d87385229087cb13253874f070f0 (patch)
treec3bc955f92c25a0e08337b7fbcaf2cf286a03cc2 /src/or/rendclient.c
parentb5edc838f283c50e8de378e3037a999736d9bbf4 (diff)
parent9648f034c07603a7430b08386172e7a9c0759847 (diff)
downloadtor-bc2d9357f523d87385229087cb13253874f070f0.tar
tor-bc2d9357f523d87385229087cb13253874f070f0.tar.gz
Merge remote-tracking branch 'origin/maint-0.2.2'
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r--src/or/rendclient.c18
1 files changed, 6 insertions, 12 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c
index 47fda2317..fc2657d0e 100644
--- a/src/or/rendclient.c
+++ b/src/or/rendclient.c
@@ -81,8 +81,8 @@ rend_client_send_establish_rendezvous(origin_circuit_t *circ)
/** Extend the introduction circuit <b>circ</b> to another valid
* introduction point for the hidden service it is trying to connect
* to, or mark it and launch a new circuit if we can't extend it.
- * Return 0 on success. Return -1 and mark the introduction
- * circuit on failure.
+ * Return 0 on success or possible success. Return -1 and mark the
+ * introduction circuit for close on permanent failure.
*
* On failure, the caller is responsible for marking the associated
* rendezvous circuit for close. */
@@ -107,17 +107,11 @@ rend_client_reextend_intro_circuit(origin_circuit_t *circ)
result = circuit_extend_to_new_exit(circ, extend_info);
} else {
log_info(LD_REND,
- "Building a new introduction circuit, this time to %s.",
- safe_str_client(extend_info_describe(extend_info)));
+ "Closing intro circ %d (out of RELAY_EARLY cells).",
+ circ->_base.n_circ_id);
circuit_mark_for_close(TO_CIRCUIT(circ), END_CIRC_REASON_FINISHED);
- if (!circuit_launch_by_extend_info(CIRCUIT_PURPOSE_C_INTRODUCING,
- extend_info,
- CIRCLAUNCH_IS_INTERNAL)) {
- log_warn(LD_REND, "Building introduction circuit failed.");
- result = -1;
- } else {
- result = 0;
- }
+ /* connection_ap_handshake_attach_circuit will launch a new intro circ. */
+ result = 0;
}
extend_info_free(extend_info);
return result;