diff options
author | Fernando Fernandez Mancera <ffernandezmancera@gmail.com> | 2017-12-08 18:10:07 +0100 |
---|---|---|
committer | Fernando Fernandez Mancera <ffernandezmancera@gmail.com> | 2017-12-08 18:14:08 +0100 |
commit | 855982728085cc9497c70c2b74d8d58b62cab1a1 (patch) | |
tree | a1ebadfd0df8339dd6a1e2056e28add905df08d3 /src/or/hs_client.c | |
parent | d4ca18573ccd0164f4d867e41a8f453119ce421f (diff) | |
download | tor-855982728085cc9497c70c2b74d8d58b62cab1a1.tar.gz tor-855982728085cc9497c70c2b74d8d58b62cab1a1.zip |
Split client-side get_rend_circ into two functions.
Split hs_circuitmap_get_rend_circ_client_side(). One returns only established
circuits (hs_circuitmap_get_established_rend_circ_client_side()) and the other
returns all kinds of circuits.
Fixes #23459
Signed-off-by: Fernando Fernandez Mancera <ffernandezmancera@gmail.com>
Diffstat (limited to 'src/or/hs_client.c')
-rw-r--r-- | src/or/hs_client.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/hs_client.c b/src/or/hs_client.c index 9ac653c721..0dea0bb8cb 100644 --- a/src/or/hs_client.c +++ b/src/or/hs_client.c @@ -940,7 +940,8 @@ handle_introduce_ack_success(origin_circuit_t *intro_circ) /* Get the rendezvous circuit for this rendezvous cookie. */ uint8_t *rendezvous_cookie = intro_circ->hs_ident->rendezvous_cookie; - rend_circ = hs_circuitmap_get_rend_circ_client_side(rendezvous_cookie); + rend_circ = + hs_circuitmap_get_established_rend_circ_client_side(rendezvous_cookie); if (rend_circ == NULL) { log_warn(LD_REND, "Can't find any rendezvous circuit. Stopping"); goto end; |