diff options
author | Roger Dingledine <arma@torproject.org> | 2007-07-21 22:04:18 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2007-07-21 22:04:18 +0000 |
commit | a916e07ea68c897d42704df49e423dcfc223ef98 (patch) | |
tree | e7b07a019a3ec9554187bd07ff1bbfed0ef2aa93 /src/or/router.c | |
parent | 8e50aa73418d85d5861a8849859d8cb6923b1f69 (diff) | |
download | tor-a916e07ea68c897d42704df49e423dcfc223ef98.tar.gz tor-a916e07ea68c897d42704df49e423dcfc223ef98.zip |
when requesting tor/server/authority, ask for tor/server/authority.z
instead. same functionality, saves a bit of bandwidth. and might even
work.
svn:r10896
Diffstat (limited to 'src/or/router.c')
-rw-r--r-- | src/or/router.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c index 7d3d621911..1137881e68 100644 --- a/src/or/router.c +++ b/src/or/router.c @@ -615,7 +615,7 @@ consider_testing_reachability(int test_or, int test_dir) 0, me->cache_info.identity_digest, DIR_PURPOSE_FETCH_SERVERDESC, ROUTER_PURPOSE_GENERAL, - 1, "authority", NULL, 0); + 1, "authority.z", NULL, 0); control_event_server_status(LOG_NOTICE, "CHECKING_REACHABILITY DIRADDRESS=%s:%d", |