diff options
author | Roger Dingledine <arma@torproject.org> | 2004-08-18 06:29:58 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-08-18 06:29:58 +0000 |
commit | 6e9e467b1d68dbaf22ebc117254d41f84efd97a1 (patch) | |
tree | 9ed18da784ffefd011aef07429f3e864258dcd6c /src | |
parent | b294a037a451b097ebcf0c5ebb3c48daff1ff052 (diff) | |
download | tor-6e9e467b1d68dbaf22ebc117254d41f84efd97a1.tar tor-6e9e467b1d68dbaf22ebc117254d41f84efd97a1.tar.gz |
dirservers now don't build circuits until they have fetched a
directory from somebody else. this means they have time to
build their connections first.
svn:r2275
Diffstat (limited to 'src')
-rw-r--r-- | src/or/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/main.c b/src/or/main.c index fdd0aed81..1134dd642 100644 --- a/src/or/main.c +++ b/src/or/main.c @@ -795,7 +795,7 @@ static int do_main_loop(void) { if(authdir_mode()) { /* the directory is already here, run startup things */ - directory_has_arrived(); + router_retry_connections(); } if(server_mode()) { |