diff options
author | Nick Mathewson <nickm@torproject.org> | 2010-09-13 17:38:01 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2010-09-13 17:38:11 -0400 |
commit | 61b7e36312f5a097602ff110478072e0a13178c1 (patch) | |
tree | 503c43d0d8f1ebd55d328ea23f1e5b1c5a09fc65 /src/or | |
parent | 13f684b573f46662a01eab95e5a61bf8d9de3c82 (diff) | |
download | tor-61b7e36312f5a097602ff110478072e0a13178c1.tar tor-61b7e36312f5a097602ff110478072e0a13178c1.tar.gz |
Fix function declaration linebreaks at start of relay.c
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/relay.c | 26 |
1 files changed, 12 insertions, 14 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index 0d51ea406..7608674a9 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -38,20 +38,18 @@ static edge_connection_t *relay_lookup_conn(circuit_t *circ, cell_t *cell, cell_direction_t cell_direction, crypt_path_t *layer_hint); -static int -connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, - edge_connection_t *conn, - crypt_path_t *layer_hint); -static void -circuit_consider_sending_sendme(circuit_t *circ, crypt_path_t *layer_hint); -static void -circuit_resume_edge_reading(circuit_t *circ, crypt_path_t *layer_hint); -static int -circuit_resume_edge_reading_helper(edge_connection_t *conn, - circuit_t *circ, - crypt_path_t *layer_hint); -static int -circuit_consider_stop_edge_reading(circuit_t *circ, crypt_path_t *layer_hint); +static int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, + edge_connection_t *conn, + crypt_path_t *layer_hint); +static void circuit_consider_sending_sendme(circuit_t *circ, + crypt_path_t *layer_hint); +static void circuit_resume_edge_reading(circuit_t *circ, + crypt_path_t *layer_hint); +static int circuit_resume_edge_reading_helper(edge_connection_t *conn, + circuit_t *circ, + crypt_path_t *layer_hint); +static int circuit_consider_stop_edge_reading(circuit_t *circ, + crypt_path_t *layer_hint); static int circuit_queue_streams_are_blocked(circuit_t *circ); /** Cache the current hi-res time; the cache gets reset when libevent |