diff options
author | David Goulet <dgoulet@torproject.org> | 2017-07-21 13:56:10 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-08-24 13:03:28 -0400 |
commit | 6eb125d14bf69e9dad427fe4b1005477177acc04 (patch) | |
tree | 47370b60ca322ad6713eda940458b096ed78f7f0 /src/or/hs_client.h | |
parent | d599325b5e1f92395742c3380112b4d2d7cbe9db (diff) | |
download | tor-6eb125d14bf69e9dad427fe4b1005477177acc04.tar.gz tor-6eb125d14bf69e9dad427fe4b1005477177acc04.zip |
prop224: Client has opened circuit logic
Make a single entry point for the entire HS subsystem when a client circuit
opens (every HS version).
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_client.h')
-rw-r--r-- | src/or/hs_client.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/or/hs_client.h b/src/or/hs_client.h index d8348ddb3f..a716fc02e4 100644 --- a/src/or/hs_client.h +++ b/src/or/hs_client.h @@ -25,5 +25,7 @@ int hs_client_refetch_hsdesc(const ed25519_public_key_t *identity_pk); int hs_client_send_introduce1(origin_circuit_t *intro_circ, origin_circuit_t *rend_circ); +void hs_client_circuit_has_opened(origin_circuit_t *circ); + #endif /* TOR_HS_CLIENT_H */ |