summaryrefslogtreecommitdiff
path: root/src/or/rendmid.c
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2016-11-15 14:18:48 -0500
committerDavid Goulet <dgoulet@torproject.org>2017-01-18 16:58:34 -0500
commit9d7505a62aebaaf2fdf0e3a8178b80be17047e7b (patch)
tree18f31254e03891926a928ec396775311daa9a87b /src/or/rendmid.c
parente1497744c8887c883541d3cb6d3d63d9ab51f9ad (diff)
downloadtor-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/rendmid.c')
-rw-r--r--src/or/rendmid.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/rendmid.c b/src/or/rendmid.c
index 3319a639b9..b873ad7cca 100644
--- a/src/or/rendmid.c
+++ b/src/or/rendmid.c
@@ -38,7 +38,7 @@ rend_mid_establish_intro_legacy(or_circuit_t *circ, const uint8_t *request,
"Received a legacy ESTABLISH_INTRO request on circuit %u",
(unsigned) circ->p_circ_id);
- if (!hs_intro_circuit_is_suitable(circ)) {
+ if (!hs_intro_circuit_is_suitable_for_establish_intro(circ)) {
reason = END_CIRC_REASON_TORPROTOCOL;
goto err;
}