]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
161b2750 didn't really retry the stream. this does.
authorRoger Dingledine <arma@torproject.org>
Mon, 16 Aug 2010 04:04:49 +0000 (00:04 -0400)
committerRoger Dingledine <arma@torproject.org>
Mon, 16 Aug 2010 04:04:49 +0000 (00:04 -0400)
src/or/relay.c

index 6d0080fad62b10302dba2aea8c7ecad69137f58c..b85cc84c52f26ab5395d78b0349d7b1fdb19d423 100644 (file)
@@ -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,