diff options
author | Roger Dingledine <arma@torproject.org> | 2006-01-17 04:03:23 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-01-17 04:03:23 +0000 |
commit | cca9a2f7b032ce3908dfff95db0307276ed1bb13 (patch) | |
tree | 1b05f1080282aa828e2bc3a554ce515399f91c2e /src/or | |
parent | 21be9dc3c0c35db734c182865270a86cb613bcad (diff) | |
download | tor-cca9a2f7b032ce3908dfff95db0307276ed1bb13.tar.gz tor-cca9a2f7b032ce3908dfff95db0307276ed1bb13.zip |
oh, and the other bits of the commit
svn:r5836
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/circuitbuild.c | 2 | ||||
-rw-r--r-- | src/or/or.h | 1 |
2 files changed, 2 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 9552ba4240..b14d94c8ea 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -493,7 +493,7 @@ circuit_deliver_create_cell(circuit_t *circ, uint8_t cell_type, char *payload) /** We've decided to start our reachability testing. If all * is set, log this to the user. Return 1 if we did, or 0 if * we chose not to log anything. */ -static int +int inform_testing_reachability(void) { char dirbuf[128]; diff --git a/src/or/or.h b/src/or/or.h index a4a3a0f48b..06b248052c 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1463,6 +1463,7 @@ circuit_t *circuit_establish_circuit(uint8_t purpose, extend_info_t *exit, int internal); int circuit_handle_first_hop(circuit_t *circ); void circuit_n_conn_done(connection_t *or_conn, int status); +int inform_testing_reachability(void); int circuit_send_next_onion_skin(circuit_t *circ); void circuit_note_clock_jumped(int seconds_elapsed); int circuit_extend(cell_t *cell, circuit_t *circ); |