diff options
author | George Kadianakis <desnacked@riseup.net> | 2016-11-02 11:37:50 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-12-14 15:18:36 -0500 |
commit | d7be1fd5197ad984d45c1d9a0a033a2b95a9fd9e (patch) | |
tree | a1e1c05d80e686cc3e5edb5c61550262da69fcc7 /src/or/rendmid.h | |
parent | c4c90d56b543887ee9bee6553725151b09891d8e (diff) | |
download | tor-d7be1fd5197ad984d45c1d9a0a033a2b95a9fd9e.tar.gz tor-d7be1fd5197ad984d45c1d9a0a033a2b95a9fd9e.zip |
prop224: Introduce the new introduction point code.
(pun not intended)
Now our code supports both legacy and prop224 ESTABLISH_INTRO cells :)
hs_intro_received_establish_intro() is the new entry point.
Diffstat (limited to 'src/or/rendmid.h')
-rw-r--r-- | src/or/rendmid.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/rendmid.h b/src/or/rendmid.h index 10d1287085..374f2b7d66 100644 --- a/src/or/rendmid.h +++ b/src/or/rendmid.h @@ -12,8 +12,8 @@ #ifndef TOR_RENDMID_H #define TOR_RENDMID_H -int rend_mid_establish_intro(or_circuit_t *circ, const uint8_t *request, - size_t request_len); +int rend_mid_establish_intro_legacy(or_circuit_t *circ, const uint8_t *request, + size_t request_len); int rend_mid_introduce(or_circuit_t *circ, const uint8_t *request, size_t request_len); int rend_mid_establish_rendezvous(or_circuit_t *circ, const uint8_t *request, |