diff options
author | George Kadianakis <desnacked@riseup.net> | 2012-12-05 19:18:18 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2013-07-18 14:59:56 -0400 |
commit | d8f74cc439ad025cc52aea8495705096d6538029 (patch) | |
tree | bbd95cd281b56d257aaacad78fc46f82faee992d /src/or/connection_or.h | |
parent | 2207525a69702a13ad0b3c0346b8c3fdb90824c0 (diff) | |
download | tor-d8f74cc439ad025cc52aea8495705096d6538029.tar.gz tor-d8f74cc439ad025cc52aea8495705096d6538029.zip |
Move Extended ORPort code to its own module.
Move the code from the connection_or module to ext_orport.
This commit only moves code: it shouldn't modify anything.
Diffstat (limited to 'src/or/connection_or.h')
-rw-r--r-- | src/or/connection_or.h | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/or/connection_or.h b/src/or/connection_or.h index d420dc7848..85e68f1a33 100644 --- a/src/or/connection_or.h +++ b/src/or/connection_or.h @@ -45,8 +45,6 @@ void connection_or_close_for_error(or_connection_t *orconn, int flush); void connection_or_report_broken_states(int severity, int domain); -int connection_ext_or_start_auth(or_connection_t *or_conn); - int connection_tls_start_handshake(or_connection_t *conn, int receiving); int connection_tls_continue_handshake(or_connection_t *conn); @@ -97,17 +95,5 @@ void var_cell_free(var_cell_t *cell); /** DOCDOC */ #define MIN_LINK_PROTO_FOR_WIDE_CIRC_IDS 4 -ext_or_cmd_t *ext_or_cmd_new(uint16_t len); -void ext_or_cmd_free(ext_or_cmd_t *cmd); -void connection_or_set_ext_or_identifier(or_connection_t *conn); -void connection_or_remove_from_ext_or_id_map(or_connection_t *conn); -void connection_or_clear_ext_or_id_map(void); - -int connection_ext_or_finished_flushing(or_connection_t *conn); -int connection_ext_or_process_inbuf(or_connection_t *or_conn); - -int init_ext_or_auth_cookie_authentication(int is_enabled); -char *get_ext_or_auth_cookie_file(void); - #endif |