diff options
author | David Goulet <dgoulet@torproject.org> | 2017-03-07 14:57:14 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-08-08 20:29:33 -0400 |
commit | 5e710368b3e9a19862422d4bd43f2c1d8d0ceba8 (patch) | |
tree | c8ee8438e0f710cd75c92da07b8845bffd0e932f /src/or/hs_service.h | |
parent | faadbafba37932455ee60e02053e2e1300b63f33 (diff) | |
download | tor-5e710368b3e9a19862422d4bd43f2c1d8d0ceba8.tar.gz tor-5e710368b3e9a19862422d4bd43f2c1d8d0ceba8.zip |
prop224: Handle service INTRODUCE2 cell
At this commit, launching rendezvous circuit is not implemented, only a
placeholder.
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 3de96d64e0..f12094a927 100644 --- a/src/or/hs_service.h +++ b/src/or/hs_service.h @@ -235,6 +235,9 @@ 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); +int hs_service_receive_introduce2(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 |