diff options
author | David Goulet <dgoulet@torproject.org> | 2017-07-25 10:14:00 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-08-24 13:03:28 -0400 |
commit | 9af311630626b920aa74c4fb8d36eb086ebfb8a4 (patch) | |
tree | 23e604b15543db50e38186b69739ec29d659273f /src/or/hs_client.h | |
parent | ee15c16742aecb4795ce12847068b7907be9e8a2 (diff) | |
download | tor-9af311630626b920aa74c4fb8d36eb086ebfb8a4.tar.gz tor-9af311630626b920aa74c4fb8d36eb086ebfb8a4.zip |
prop224: Handle RENDEZVOUS2 cell
The client can now handle RENDEZVOUS2 cell when they arrive. This consolidate
both hidden service version in one function.
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_client.h')
-rw-r--r-- | src/or/hs_client.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/hs_client.h b/src/or/hs_client.h index 1c0f8a4d2a..6681505ee6 100644 --- a/src/or/hs_client.h +++ b/src/or/hs_client.h @@ -34,6 +34,9 @@ int hs_client_receive_rendezvous_acked(origin_circuit_t *circ, int hs_client_receive_introduce_ack(origin_circuit_t *circ, const uint8_t *payload, size_t payload_len); +int hs_client_receive_rendezvous2(origin_circuit_t *circ, + const uint8_t *payload, + size_t payload_len); void hs_client_desc_has_arrived(const hs_ident_dir_conn_t *ident); |