diff options
author | David Goulet <dgoulet@torproject.org> | 2016-11-15 14:18:48 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2017-01-18 16:58:34 -0500 |
commit | 9d7505a62aebaaf2fdf0e3a8178b80be17047e7b (patch) | |
tree | 18f31254e03891926a928ec396775311daa9a87b /src/or/hs_intropoint.h | |
parent | e1497744c8887c883541d3cb6d3d63d9ab51f9ad (diff) | |
download | tor-9d7505a62aebaaf2fdf0e3a8178b80be17047e7b.tar.gz tor-9d7505a62aebaaf2fdf0e3a8178b80be17047e7b.zip |
prop224: Rename hs_intro_circuit_is_suitable()
Adds a better semantic and it also follows the same interface for the
INTRODUCE1 API which is circuit_is_suitable_for_introduce1().
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_intropoint.h')
-rw-r--r-- | src/or/hs_intropoint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/hs_intropoint.h b/src/or/hs_intropoint.h index e1bad47fc8..08b3470bca 100644 --- a/src/or/hs_intropoint.h +++ b/src/or/hs_intropoint.h @@ -33,7 +33,7 @@ int hs_intro_received_introduce1(or_circuit_t *circ, const uint8_t *request, MOCK_DECL(int, hs_intro_send_intro_established_cell,(or_circuit_t *circ)); /* also used by rendservice.c */ -int hs_intro_circuit_is_suitable(const or_circuit_t *circ); +int hs_intro_circuit_is_suitable_for_establish_intro(const or_circuit_t *circ); #ifdef HS_INTROPOINT_PRIVATE |