From 9685164fe55358fe24abd470549b84a47d0c4b07 Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Fri, 25 Mar 2005 10:55:06 +0000 Subject: [PATCH] don't mark a router down just because your httpsproxy is unreachable svn:r3874 --- src/or/connection.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 {