diff options
author | Nick Mathewson <nickm@torproject.org> | 2017-10-18 12:55:09 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-10-18 12:55:09 -0400 |
commit | f0daaf8d60be8bfcfaa99e3a878cd90967a84bb0 (patch) | |
tree | ac80b6c94e5e173ff2c2d399ca0ca607bdc9ef9a /src/or/connection.c | |
parent | 4eb5753bd29b24fd5a523499add35a6214293cd9 (diff) | |
download | tor-f0daaf8d60be8bfcfaa99e3a878cd90967a84bb0.tar.gz tor-f0daaf8d60be8bfcfaa99e3a878cd90967a84bb0.zip |
Expose connection_init_accepted_conn.
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 632a833652..431ab3a3a0 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -118,8 +118,6 @@ static connection_t *connection_listener_new( const port_cfg_t *portcfg); static void connection_init(time_t now, connection_t *conn, int type, int socket_family); -static int connection_init_accepted_conn(connection_t *conn, - const listener_connection_t *listener); static int connection_handle_listener_read(connection_t *conn, int new_type); static int connection_bucket_should_increase(int bucket, or_connection_t *conn); @@ -1662,11 +1660,15 @@ connection_handle_listener_read(connection_t *conn, int new_type) } /** Initialize states for newly accepted connection <b>conn</b>. + * * If conn is an OR, start the TLS handshake. + * * If conn is a transparent AP, get its original destination * and place it in circuit_wait. + * + * The <b>listener</b> parameter is only used for AP connections. */ -static int +int connection_init_accepted_conn(connection_t *conn, const listener_connection_t *listener) { |