Browse Source

161b2750 didn't really retry the stream. this does.

Roger Dingledine 15 years ago
parent
commit
4c948ffd6c
1 changed files with 2 additions and 1 deletions
  1. 2 1
      src/or/relay.c

+ 2 - 1
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,