From: Roger Dingledine Date: Fri, 21 Jul 2006 07:55:35 +0000 (+0000) Subject: bugfix: if you find yourself reachable, then don't ever make any client X-Git-Tag: tor-0.1.1.23~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2249180b60d370ed8cb3f35b7c02c60f3d3ff529;p=thirdparty%2Ftor.git bugfix: if you find yourself reachable, then don't ever make any client requests (so you stop predicting circuits), then hup, then later your IP changes, you won't think circuits are working so you won't try to test reachability, so you won't publish. svn:r6800 --- diff --git a/src/or/main.c b/src/or/main.c index 5941241d18..6623c10f79 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -1029,7 +1029,6 @@ do_hup(void) or_options_t *options = get_options(); log_notice(LD_GENERAL,"Received reload signal (hup). Reloading config."); - has_completed_circuit=0; if (accounting_is_enabled(options)) accounting_record_bandwidth_usage(time(NULL));