summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2010-08-16 00:04:49 -0400
committerRoger Dingledine <arma@torproject.org>2010-08-16 00:04:49 -0400
commit4c948ffd6c34bc60dc9b3bf66226ae179a2d0752 (patch)
tree6c21f02c4dd1e3a09e51e57d6dccb9e744beec36
parentb51f1a64e4d0caaddeea9e6f1296b12f8e5adb85 (diff)
downloadtor-4c948ffd6c34bc60dc9b3bf66226ae179a2d0752.tar.gz
tor-4c948ffd6c34bc60dc9b3bf66226ae179a2d0752.zip
161b2750 didn't really retry the stream. this does.
-rw-r--r--src/or/relay.c3
1 files changed, 2 insertions, 1 deletions
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,