From: Roger Dingledine Date: Mon, 16 Aug 2010 04:04:49 +0000 (-0400) Subject: 161b2750 didn't really retry the stream. this does. X-Git-Tag: tor-0.2.2.15-alpha~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4c948ffd6c34bc60dc9b3bf66226ae179a2d0752;p=thirdparty%2Ftor.git 161b2750 didn't really retry the stream. this does. --- diff --git a/src/or/relay.c b/src/or/relay.c index 6d0080fad6..b85cc84c52 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -692,7 +692,8 @@ edge_reason_is_retriable(int reason) reason == END_STREAM_REASON_RESOURCELIMIT || reason == END_STREAM_REASON_EXITPOLICY || reason == END_STREAM_REASON_RESOLVEFAILED || - reason == END_STREAM_REASON_MISC; + reason == END_STREAM_REASON_MISC || + reason == END_STREAM_REASON_NOROUTE; } /** Called when we receive an END cell on a stream that isn't open yet,