From d8d074f2e5de809a561260f4374f4dadde8d0942 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Sat, 27 Jan 2007 19:40:49 +0000 Subject: If the user asks to use invalid exit nodes, be willing to use the unstable ones. svn:r9441 --- src/or/circuitbuild.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/or/circuitbuild.c') diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 416017ccb..becfaf89f 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -1187,10 +1187,8 @@ choose_good_exit_server_general(routerlist_t *dir, int need_uptime, n_supported[i] = -1; continue; /* skip routers that are not suitable */ } - if (!router->is_valid && - (!(options->_AllowInvalid & ALLOW_INVALID_EXIT) || - router_is_unreliable(router, 1, 1, 0))) { - /* if it's invalid, and either we don't want it or it's unsuitable */ + if (!(router->is_valid || options->_AllowInvalid & ALLOW_INVALID_EXIT)) { + /* if it's invalid and we don't want it */ n_supported[i] = -1; // log_fn(LOG_DEBUG,"Skipping node %s (index %d) -- invalid router.", // router->nickname, i); -- cgit v1.2.3