aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/or/circuitbuild.c2
-rw-r--r--src/or/or.h1
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);