diff options
author | George Kadianakis <desnacked@riseup.net> | 2017-09-25 15:00:06 +0300 |
---|---|---|
committer | George Kadianakis <desnacked@riseup.net> | 2017-09-25 15:00:06 +0300 |
commit | 03b3f5486ae169dd53e2b5fc1bca1c9ba7c8f5da (patch) | |
tree | b72e9cf832133560dfa65272fc3b2c22c1e0610b /src/or/hs_client.c | |
parent | a3f5a246693cca2f6a51e418e6edf8fae2fe75b5 (diff) | |
download | tor-03b3f5486ae169dd53e2b5fc1bca1c9ba7c8f5da.tar.gz tor-03b3f5486ae169dd53e2b5fc1bca1c9ba7c8f5da.zip |
prop224: Add test for parsing RENDEZVOUS1 cell.
Just making sure that added padding does not screw up cell parsing.
Diffstat (limited to 'src/or/hs_client.c')
-rw-r--r-- | src/or/hs_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/hs_client.c b/src/or/hs_client.c index 77fbf548ed..e29f8beca7 100644 --- a/src/or/hs_client.c +++ b/src/or/hs_client.c @@ -845,7 +845,7 @@ handle_introduce_ack(origin_circuit_t *circ, const uint8_t *payload, /* Called when we get a RENDEZVOUS2 cell on the rendezvous circuit circ. The * encoded cell is in payload of length payload_len. Return 0 on success or a * negative value on error. On error, the circuit is marked for close. */ -static int +STATIC int handle_rendezvous2(origin_circuit_t *circ, const uint8_t *payload, size_t payload_len) { |