diff options
author | Robert Ransom <rransom.8774@gmail.com> | 2011-12-06 19:24:55 -0800 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-12-09 11:28:42 -0500 |
commit | 59b5379424295567dc68a50535cf544873ac28d9 (patch) | |
tree | 10d86f10b54ae036c350296973aed7d9947f6587 /src/or/rendclient.c | |
parent | 832bfc3c462f0b8dc1668b5b580f656a2b457a96 (diff) | |
download | tor-59b5379424295567dc68a50535cf544873ac28d9.tar.gz tor-59b5379424295567dc68a50535cf544873ac28d9.zip |
Remove comment complaining that we try to attach all streams to circs
It's inefficient, but the more efficient solution (only try to attach
streams aiming for this HS) would require far more complexity for a gain
that should be tiny.
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r-- | src/or/rendclient.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index c4744731df..8aae8c5cb5 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -893,9 +893,6 @@ rend_client_receive_rendezvous(origin_circuit_t *circ, const uint8_t *request, onion_append_to_cpath(&circ->cpath, hop); circ->build_state->pending_final_cpath = NULL; /* prevent double-free */ - /* XXXX023 This is a pretty brute-force approach. It'd be better to - * attach only the connections that are waiting on this circuit, rather - * than trying to attach them all. See comments bug 743. */ circuit_try_attaching_streams(circ); memset(keys, 0, sizeof(keys)); |