diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-10-21 10:52:12 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-10-21 10:52:12 -0400 |
commit | 2c3dafc342b94e9674b62ebd1a1da00bab615a86 (patch) | |
tree | dec12a9fade9ffe4753f11a7b02e8eaae269d70f /src | |
parent | d17b9bf1a5ba2fba56293e7024d6f8f43e3688ab (diff) | |
parent | ea7f4be6d271639bff0731108751a0b20c0b860e (diff) | |
download | tor-2c3dafc342b94e9674b62ebd1a1da00bab615a86.tar.gz tor-2c3dafc342b94e9674b62ebd1a1da00bab615a86.zip |
Merge remote branch 'origin/maint-0.2.2'
Diffstat (limited to 'src')
-rw-r--r-- | src/or/relay.c | 14 |
1 files changed, 4 insertions, 10 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index 767ea79c17..1d7a5171b6 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -593,17 +593,11 @@ relay_send_command_from_edge(streamid_t stream_id, circuit_t *circ, origin_circuit_t *origin_circ = TO_ORIGIN_CIRCUIT(circ); if (origin_circ->remaining_relay_early_cells > 0 && (relay_command == RELAY_COMMAND_EXTEND || - (cpath_layer != origin_circ->cpath && - !CIRCUIT_PURPOSE_IS_ESTABLISHED_REND(circ->purpose)))) { - /* If we've got any relay_early cells left, and we're sending - * an extend cell or (we're not talking to the first hop and we're - * not talking to a rendezvous circuit), use one of them. - * Don't worry about the conn protocol version: + cpath_layer != origin_circ->cpath)) { + /* If we've got any relay_early cells left and (we're sending + * an extend cell or we're not talking to the first hop), use + * one of them. Don't worry about the conn protocol version: * append_cell_to_circuit_queue will fix it up. */ - /* XXX For now, clients don't use RELAY_EARLY cells when sending - * relay cells on rendezvous circuits. See bug 1038. Once no relays - * (and thus no rendezvous points) are running 0.2.1.3-alpha through - * 0.2.1.18, we can take out that exception. -RD */ cell.command = CELL_RELAY_EARLY; --origin_circ->remaining_relay_early_cells; log_debug(LD_OR, "Sending a RELAY_EARLY cell; %d remaining.", |