diff options
author | Roger Dingledine <arma@torproject.org> | 2006-07-21 07:55:35 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2006-07-21 07:55:35 +0000 |
commit | 2249180b60d370ed8cb3f35b7c02c60f3d3ff529 (patch) | |
tree | 7d5877350815cff89a9491571325bfcf2b906ec6 | |
parent | 4d5fab4f9a101bebd8579735a956f25fd769b7b0 (diff) | |
download | tor-2249180b60d370ed8cb3f35b7c02c60f3d3ff529.tar.gz tor-2249180b60d370ed8cb3f35b7c02c60f3d3ff529.zip |
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
-rw-r--r-- | src/or/main.c | 1 |
1 files changed, 0 insertions, 1 deletions
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)); |