diff options
author | Nick Mathewson <nickm@torproject.org> | 2011-06-22 13:57:19 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2011-07-11 16:13:16 -0400 |
commit | a2ad31a92b85158f0dfa0a219ae5270e03b2ef02 (patch) | |
tree | 76ccdb01f75d5b364ebfaf9432a26e72ab99a5bf /src/or/connection_edge.h | |
parent | a21c4c657a1d06e2c4fc72a2f85400944d0e6460 (diff) | |
download | tor-a2ad31a92b85158f0dfa0a219ae5270e03b2ef02.tar.gz tor-a2ad31a92b85158f0dfa0a219ae5270e03b2ef02.zip |
Split connection_about_to_close_connection into separate functions
This patch does NOTHING but:
- move code
- add declarations and includes as needed to make the new code
work
- declare the new functions.
Diffstat (limited to 'src/or/connection_edge.h')
-rw-r--r-- | src/or/connection_edge.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/or/connection_edge.h b/src/or/connection_edge.h index a7fc12e23d..1cb1281dbd 100644 --- a/src/or/connection_edge.h +++ b/src/or/connection_edge.h @@ -27,6 +27,9 @@ int connection_edge_flushed_some(edge_connection_t *conn); int connection_edge_finished_flushing(edge_connection_t *conn); int connection_edge_finished_connecting(edge_connection_t *conn); +void connection_ap_about_to_close(edge_connection_t *edge_conn); +void connection_exit_about_to_close(edge_connection_t *edge_conn); + int connection_ap_handshake_send_begin(edge_connection_t *ap_conn); int connection_ap_handshake_send_resolve(edge_connection_t *ap_conn); |