summaryrefslogtreecommitdiff
path: root/src/or/dirserv.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2006-05-28 16:14:26 +0000
committerRoger Dingledine <arma@torproject.org>2006-05-28 16:14:26 +0000
commitf6ff3e6f0eebb18ab935e1229f7601bad941d2d0 (patch)
treef269952519163d420d320ded63468fd657d77664 /src/or/dirserv.c
parent48be472e4f5e13e4b99e8bc8de4cc5729d2f6092 (diff)
downloadtor-f6ff3e6f0eebb18ab935e1229f7601bad941d2d0.tar.gz
tor-f6ff3e6f0eebb18ab935e1229f7601bad941d2d0.zip
directory authorities should be more tolerant of failed reachability
tests before crying foul to the server operator. svn:r6509
Diffstat (limited to 'src/or/dirserv.c')
-rw-r--r--src/or/dirserv.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c
index 8a8a42a149..e7f957e558 100644
--- a/src/or/dirserv.c
+++ b/src/or/dirserv.c
@@ -656,7 +656,7 @@ list_single_server_status(routerinfo_t *desc, int is_live)
/** Each server needs to have passed a reachability test no more
* than this number of seconds ago, or he is listed as down in
* the directory. */
-#define REACHABLE_TIMEOUT (30*60)
+#define REACHABLE_TIMEOUT (45*60)
/** Treat a router as alive if
* - It's me, and I'm not hibernating.