diff options
author | Mike Perry <mikeperry-git@torproject.org> | 2018-05-09 04:00:59 +0000 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-05-14 14:24:58 -0400 |
commit | fd504587d56d4062bccb0d815f4fd925fb8eb33c (patch) | |
tree | 8610660a155c1031ee1a6bd771e0472f297e9a97 /src/or/relay.c | |
parent | 08bfb87d1b049d6454e03eb056c94d96e833e782 (diff) | |
download | tor-fd504587d56d4062bccb0d815f4fd925fb8eb33c.tar.gz tor-fd504587d56d4062bccb0d815f4fd925fb8eb33c.zip |
Bug 25903: Tests
Diffstat (limited to 'src/or/relay.c')
-rw-r--r-- | src/or/relay.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index 05f71efead..095d48fa5f 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -83,9 +83,6 @@ 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, @@ -1412,7 +1409,7 @@ connection_edge_process_relay_cell_not_open( * * Return -reason if you want to warn and tear down the circuit, else 0. */ -static int +STATIC int connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, edge_connection_t *conn, crypt_path_t *layer_hint) |