diff options
author | Roger Dingledine <arma@torproject.org> | 2003-09-16 05:41:49 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-09-16 05:41:49 +0000 |
commit | 8b71b7338faeaedf60e40b335b865781106ad1a2 (patch) | |
tree | 8d377cc8a77134d9cfd39b7a0b2b72cf7e93852b /src/or/connection_edge.c | |
parent | 9c6343fdf8ab6e8241c613c54bb3bd9cb6c78a91 (diff) | |
download | tor-8b71b7338faeaedf60e40b335b865781106ad1a2.tar.gz tor-8b71b7338faeaedf60e40b335b865781106ad1a2.zip |
clean up exported api's
svn:r461
Diffstat (limited to 'src/or/connection_edge.c')
-rw-r--r-- | src/or/connection_edge.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/connection_edge.c b/src/or/connection_edge.c index cfd9f75660..e47983a127 100644 --- a/src/or/connection_edge.c +++ b/src/or/connection_edge.c @@ -535,7 +535,7 @@ static int connection_ap_handshake_process_socks(connection_t *conn) { return 0; } -int connection_ap_handshake_send_begin(connection_t *ap_conn, circuit_t *circ) { +static int connection_ap_handshake_send_begin(connection_t *ap_conn, circuit_t *circ) { cell_t cell; memset(&cell, 0, sizeof(cell_t)); @@ -565,7 +565,7 @@ int connection_ap_handshake_send_begin(connection_t *ap_conn, circuit_t *circ) { return 0; } -int connection_ap_handshake_socks_reply(connection_t *conn, char result) { +static int connection_ap_handshake_socks_reply(connection_t *conn, char result) { socks4_t socks4_info; assert(conn); |