diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-12-14 15:41:08 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-14 15:41:08 -0500 |
commit | 81360c4a5fde6d66a81c506af657df77d2e63cff (patch) | |
tree | f7bc6843a6f8ff953732dd9bb906a4de992dbd25 /src/or/hs_intropoint.h | |
parent | a675ef8eeabcd6c2ab05cfadc59a95de578be380 (diff) | |
download | tor-81360c4a5fde6d66a81c506af657df77d2e63cff.tar.gz tor-81360c4a5fde6d66a81c506af657df77d2e63cff.zip |
whitespace fixes
Diffstat (limited to 'src/or/hs_intropoint.h')
-rw-r--r-- | src/or/hs_intropoint.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/or/hs_intropoint.h b/src/or/hs_intropoint.h index b7846a4d8f..46d8d6f7de 100644 --- a/src/or/hs_intropoint.h +++ b/src/or/hs_intropoint.h @@ -16,8 +16,9 @@ enum hs_intro_auth_key_type { HS_INTRO_AUTH_KEY_TYPE_ED25519 = 0x02, }; -int hs_intro_received_establish_intro(or_circuit_t *circ, const uint8_t *request, - size_t request_len); +int hs_intro_received_establish_intro(or_circuit_t *circ, + const uint8_t *request, + size_t request_len); MOCK_DECL(int, hs_intro_send_intro_established_cell,(or_circuit_t *circ)); @@ -38,3 +39,4 @@ get_auth_key_from_establish_intro_cell(ed25519_public_key_t *auth_key_out, #endif /* HS_INTROPOINT_PRIVATE */ #endif /* TOR_HS_INTRO_H */ + |