From 00aefaab6bc4ccb2ec737c7bf5eb0c4aec961c36 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sat, 22 Jul 2006 07:19:11 +0000 Subject: think harder about my logic svn:r6806 --- src/or/config.c | 2 +- src/or/main.c | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/or/config.c b/src/or/config.c index 9c6577c07a..6f3c4db6b5 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -796,7 +796,7 @@ options_act(or_options_t *old_options) return -1; } server_has_changed_ip(); - if (has_completed_circuit || any_predicted_circuits(time(NULL))) + if (has_completed_circuit || !any_predicted_circuits(time(NULL))) inform_testing_reachability(); } cpuworkers_rotate(); diff --git a/src/or/main.c b/src/or/main.c index cb0e74b374..b0795f526b 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -569,7 +569,7 @@ directory_info_has_arrived(time_t now, int from_cache) } if (server_mode(options) && !we_are_hibernating() && !from_cache && - (has_completed_circuit || any_predicted_circuits(now))) + (has_completed_circuit || !any_predicted_circuits(now))) consider_testing_reachability(); } @@ -833,7 +833,7 @@ run_scheduled_events(time_t now) /* also, check religiously for reachability, if it's within the first * 20 minutes of our uptime. */ if (server_mode(options) && - (has_completed_circuit || any_predicted_circuits(now)) && + (has_completed_circuit || !any_predicted_circuits(now)) && stats_n_seconds_working < TIMEOUT_UNTIL_UNREACHABILITY_COMPLAINT && !we_are_hibernating()) consider_testing_reachability(); -- cgit v1.2.3-54-g00ecf