diff options
author | David Goulet <dgoulet@torproject.org> | 2017-07-27 17:15:19 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-08-24 13:03:28 -0400 |
commit | a64ef7d6c5f609229c4e6a25f1b18494a3ba6eea (patch) | |
tree | bd8d8a9922d0bf11567b5fd6c5429b4940d270be /src/or/hs_client.h | |
parent | 14b858c4ced594ee5130a685ac4b143bf66da04a (diff) | |
download | tor-a64ef7d6c5f609229c4e6a25f1b18494a3ba6eea.tar.gz tor-a64ef7d6c5f609229c4e6a25f1b18494a3ba6eea.zip |
prop224: Implement hs_client_any_intro_points_usable()
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, 2 insertions, 1 deletions
diff --git a/src/or/hs_client.h b/src/or/hs_client.h index 4406987884..8ed0501c91 100644 --- a/src/or/hs_client.h +++ b/src/or/hs_client.h @@ -20,7 +20,8 @@ int hs_client_decode_descriptor( const char *desc_str, const ed25519_public_key_t *service_identity_pk, hs_descriptor_t **desc); -int hs_client_any_intro_points_usable(const hs_descriptor_t *desc); +int hs_client_any_intro_points_usable(const ed25519_public_key_t *service_pk, + const hs_descriptor_t *desc); int hs_client_refetch_hsdesc(const ed25519_public_key_t *identity_pk); int hs_client_send_introduce1(origin_circuit_t *intro_circ, |