diff options
author | David Goulet <dgoulet@torproject.org> | 2017-07-21 13:57:10 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-08-24 13:03:28 -0400 |
commit | b91693f7c3099c691d0e5dbb60ac55df14b7bd68 (patch) | |
tree | 9bdff12a287841022fe79830276c8c6a087fd38f /src/or/hs_circuit.h | |
parent | 6eb125d14bf69e9dad427fe4b1005477177acc04 (diff) | |
download | tor-b91693f7c3099c691d0e5dbb60ac55df14b7bd68.tar.gz tor-b91693f7c3099c691d0e5dbb60ac55df14b7bd68.zip |
prop224: Build ESTABLISH_RENDEZVOUS cell and logic
Add a function to build the cell.
Add a the logic to send the cell when the rendezvous circuit opens.
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_circuit.h')
-rw-r--r-- | src/or/hs_circuit.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/or/hs_circuit.h b/src/or/hs_circuit.h index f35ebf17db..3b0e3aca1c 100644 --- a/src/or/hs_circuit.h +++ b/src/or/hs_circuit.h @@ -48,6 +48,7 @@ int hs_circ_send_introduce1(origin_circuit_t *intro_circ, origin_circuit_t *rend_circ, const hs_desc_intro_point_t *ip, const uint8_t *subcredential); +int hs_circ_send_establish_rendezvous(origin_circuit_t *circ); /* e2e circuit API. */ |