diff options
author | Roger Dingledine <arma@torproject.org> | 2007-03-01 04:40:43 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-03-01 04:40:43 +0000 |
commit | 6b191f854ce379094d63262af9868ad566fc98c6 (patch) | |
tree | 3efd2a45d1e7ef01fa621e9fc6bb81fe50566d5b /src | |
parent | dba4e040fcf1f19022abac7454d7a78844de2a91 (diff) | |
download | tor-6b191f854ce379094d63262af9868ad566fc98c6.tar.gz tor-6b191f854ce379094d63262af9868ad566fc98c6.zip |
resolve another xxx012
svn:r9701
Diffstat (limited to 'src')
-rw-r--r-- | src/or/dirserv.c | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/src/or/dirserv.c b/src/or/dirserv.c index 71fc331d2e..d55dc8e2f3 100644 --- a/src/or/dirserv.c +++ b/src/or/dirserv.c @@ -1968,8 +1968,14 @@ void dirserv_test_reachability(int try_all) { time_t now = time(NULL); - /* XXXX012 decide what to do here; see or-talk thread "purging old router - * information, revocation." */ + /* XXX decide what to do here; see or-talk thread "purging old router + * information, revocation." -NM + * We can't afford to mess with this in 0.1.2.x. The reason is that + * if we stop doing reachability tests on some of routerlist, then + * we'll for-sure think they're down, which may have unexpected + * effects in other parts of the code. It doesn't hurt much to do + * the testing, and directory authorities are easy to upgrade. Let's + * wait til 0.2.0. -RD */ // time_t cutoff = now - ROUTER_MAX_AGE_TO_PUBLISH; routerlist_t *rl = router_get_routerlist(); static char ctr = 0; |