From: Roger Dingledine Date: Fri, 25 Mar 2005 10:55:06 +0000 (+0000) Subject: don't mark a router down just because your httpsproxy is unreachable X-Git-Tag: tor-0.1.0.1-rc~39 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=9685164fe55358fe24abd470549b84a47d0c4b07;p=thirdparty%2Ftor.git don't mark a router down just because your httpsproxy is unreachable svn:r3874 --- diff --git a/src/or/connection.c b/src/or/connection.c index 1233904486..fc4c6f0772 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -1102,7 +1102,7 @@ int connection_handle_write(connection_t *conn) { /* it's safe to pass OPs to router_mark_as_down(), since it just * ignores unrecognized routers */ - if (conn->type == CONN_TYPE_OR) + if (conn->type == CONN_TYPE_OR && !get_options()->HttpsProxy) router_mark_as_down(conn->identity_digest); return -1; } else {