diff options
author | David Goulet <dgoulet@torproject.org> | 2017-03-09 12:54:51 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-08-08 20:29:33 -0400 |
commit | dfa6301aed8f1c7164b1e8513ab64119944d976c (patch) | |
tree | a1ce43963a6c773e08eaa15e2dcb0d8e0f200ab4 /src/or/hs_circuit.h | |
parent | acc7c4ee9578e37a66dff6a09c86bee5777f782d (diff) | |
download | tor-dfa6301aed8f1c7164b1e8513ab64119944d976c.tar.gz tor-dfa6301aed8f1c7164b1e8513ab64119944d976c.zip |
prop224: Handle service RENDEZVOUS1 cell
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_circuit.h')
-rw-r--r-- | src/or/hs_circuit.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/or/hs_circuit.h b/src/or/hs_circuit.h index 1cada0b8a6..ca8f1b2f6a 100644 --- a/src/or/hs_circuit.h +++ b/src/or/hs_circuit.h @@ -20,6 +20,8 @@ int hs_circ_service_intro_has_opened(hs_service_t *service, hs_service_intro_point_t *ip, const hs_service_descriptor_t *desc, origin_circuit_t *circ); +void hs_circ_service_rp_has_opened(const hs_service_t *service, + origin_circuit_t *circ); int hs_circ_launch_intro_point(hs_service_t *service, const hs_service_intro_point_t *ip, extend_info_t *ei, time_t now); @@ -28,9 +30,6 @@ int hs_circ_launch_rendezvous_point(const hs_service_t *service, const uint8_t *rendezvous_cookie); /* Cell API. */ -void hs_circ_send_establish_intro(const hs_service_t *service, - hs_service_intro_point_t *ip, - origin_circuit_t *circ); int hs_circ_handle_intro_established(const hs_service_t *service, const hs_service_intro_point_t *ip, origin_circuit_t *circ, |