diff options
author | David Goulet <dgoulet@torproject.org> | 2017-03-07 14:33:03 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-08-08 20:29:33 -0400 |
commit | 79e8d113d5ebfbc5ccf76f5db7bc0259a29520fc (patch) | |
tree | 51fe87267864641b0855d2ded4c7164517b876bd /src/or/hs_service.h | |
parent | d765cf30b51dfcd58756b6b3d24a14ac2c47f3e8 (diff) | |
download | tor-79e8d113d5ebfbc5ccf76f5db7bc0259a29520fc.tar.gz tor-79e8d113d5ebfbc5ccf76f5db7bc0259a29520fc.zip |
prop224: Handle service INTRO_ESTABLISHED cell
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/hs_service.h')
-rw-r--r-- | src/or/hs_service.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/hs_service.h b/src/or/hs_service.h index 96df09493e..3de96d64e0 100644 --- a/src/or/hs_service.h +++ b/src/or/hs_service.h @@ -232,6 +232,9 @@ int hs_service_load_all_keys(void); void hs_service_run_scheduled_events(time_t now); void hs_service_circuit_has_opened(origin_circuit_t *circ); +int hs_service_receive_intro_established(origin_circuit_t *circ, + const uint8_t *payload, + size_t payload_len); /* These functions are only used by unit tests and we need to expose them else * hs_service.o ends up with no symbols in libor.a which makes clang throw a |