diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-15 15:27:46 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-15 15:27:46 -0400 |
commit | fde868ffe3ace818d67374858c54418296a62e79 (patch) | |
tree | 35c33d0d71d79762d07de52bc5131589d4c335c0 /src/or/connection_or.c | |
parent | 958df2829a9248cf8518aafd9e19da48ce14cf64 (diff) | |
download | tor-fde868ffe3ace818d67374858c54418296a62e79.tar.gz tor-fde868ffe3ace818d67374858c54418296a62e79.zip |
Extract cell type and their queues into new headers
Since packed_cell and destroy_cell exist only to be queued, they go
in the same headers as the queues.
Diffstat (limited to 'src/or/connection_or.c')
-rw-r--r-- | src/or/connection_or.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/connection_or.c b/src/or/connection_or.c index 1810c39546..bbd6fa0edc 100644 --- a/src/or/connection_or.c +++ b/src/or/connection_or.c @@ -61,10 +61,13 @@ #include "torcert.h" #include "channelpadding.h" +#include "cell_st.h" +#include "cell_queue_st.h" #include "or_connection_st.h" #include "or_handshake_certs_st.h" #include "or_handshake_state_st.h" #include "routerinfo_st.h" +#include "var_cell_st.h" static int connection_tls_finish_handshake(or_connection_t *conn); static int connection_or_launch_v3_or_handshake(or_connection_t *conn); |