diff options
author | Roger Dingledine <arma@torproject.org> | 2004-10-03 19:39:29 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-10-03 19:39:29 +0000 |
commit | 980b6169eb5367720e17d1b439a32d0209500860 (patch) | |
tree | f8a58fd593380e865a47aca25a1de8d2c9273fc6 /src/or/circuituse.c | |
parent | c205ad05ba2c2d6532ea2d370f07f03e6337be90 (diff) | |
download | tor-980b6169eb5367720e17d1b439a32d0209500860.tar tor-980b6169eb5367720e17d1b439a32d0209500860.tar.gz |
use only 0.0.9pre1 and later servers for resolve cells
svn:r2416
Diffstat (limited to 'src/or/circuituse.c')
-rw-r--r-- | src/or/circuituse.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/or/circuituse.c b/src/or/circuituse.c index 19b9213ee..e52835ef0 100644 --- a/src/or/circuituse.c +++ b/src/or/circuituse.c @@ -77,9 +77,8 @@ static int circuit_is_acceptable(circuit_t *circ, if (conn->socks_request && conn->socks_request->command == SOCKS_COMMAND_RESOLVE) { /* 0.0.7 servers and earlier don't support DNS resolution. 0.0.8 servers - * have buggy resolve support. Once there are more 0.0.9 servers, change - * this to 0.0.9pre1. XXX */ - if (!tor_version_as_new_as(exitrouter->platform, "0.0.8")) + * have buggy resolve support. */ + if (!tor_version_as_new_as(exitrouter->platform, "0.0.9pre1")) return 0; } else if(purpose == CIRCUIT_PURPOSE_C_GENERAL) { if(!connection_ap_can_use_exit(conn, exitrouter)) { |