From 3f73f52e7b9ea112ee06e46887ff8e69f14a6ffc Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Wed, 18 Aug 2004 06:29:58 +0000 Subject: [PATCH] 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 --- trunk/src/or/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trunk/src/or/main.c b/trunk/src/or/main.c index fdd0aed81c..1134dd6423 100644 --- a/trunk/src/or/main.c +++ b/trunk/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()) {