aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2022-10-26 14:58:21 -0400
committerDavid Goulet <dgoulet@torproject.org>2022-10-26 14:58:21 -0400
commita2ee39452a5880777e939c6b7f3d295a502411c1 (patch)
tree4dcec46ef11764b60ef285ae9ff5995e0e18e7c9
parentbb9f2ea8fb02239e10f52ce03f2cad1073f96158 (diff)
parent8463111c9bafa16a97acd42ff466ec129c5c2851 (diff)
downloadtor-a2ee39452a5880777e939c6b7f3d295a502411c1.tar.gz
tor-a2ee39452a5880777e939c6b7f3d295a502411c1.zip
Merge branch 'tor-gitlab/mr/633'
-rw-r--r--changes/ticket406923
-rw-r--r--src/feature/hs/hs_client.c2
2 files changed, 4 insertions, 1 deletions
diff --git a/changes/ticket40692 b/changes/ticket40692
new file mode 100644
index 0000000000..8405486115
--- /dev/null
+++ b/changes/ticket40692
@@ -0,0 +1,3 @@
+ o Minor bugfixes (onion service client):
+ - A collapsing onion service circuit should be seen as an "unreachable"
+ error so it can be retried. Fixes bug 40692; bugfix on 0.3.5.1-alpha.
diff --git a/src/feature/hs/hs_client.c b/src/feature/hs/hs_client.c
index bc304171ed..7cee3480d5 100644
--- a/src/feature/hs/hs_client.c
+++ b/src/feature/hs/hs_client.c
@@ -1964,7 +1964,7 @@ void
hs_client_circuit_cleanup_on_free(const circuit_t *circ)
{
bool has_timed_out;
- rend_intro_point_failure_t failure = INTRO_POINT_FAILURE_GENERIC;
+ rend_intro_point_failure_t failure = INTRO_POINT_FAILURE_UNREACHABLE;
const origin_circuit_t *orig_circ = NULL;
tor_assert(circ);