diff options
author | David Goulet <dgoulet@torproject.org> | 2016-06-16 12:58:30 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2016-06-16 13:09:24 -0400 |
commit | ab35f9de46798845e83823115c6a266af2248eae (patch) | |
tree | 68e33e90de9635ff29391faacab05cac399fdbdb /changes | |
parent | 9b0bd65f220854b7335acca020c73dc075b379a3 (diff) | |
download | tor-ab35f9de46798845e83823115c6a266af2248eae.tar.gz tor-ab35f9de46798845e83823115c6a266af2248eae.zip |
Correctly close intro circuit when deleting ephemeral HS
When deleting an ephemeral HS, we were only iterating on circuit with an
OPEN state. However, it could be possible that an intro point circuit didn't
reached the open state yet.
This commit makes it that we close the circuit regardless of its state
except if it was already marked for close.
Fixes #18604
Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug18604 | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/changes/bug18604 b/changes/bug18604 new file mode 100644 index 0000000000..114c67e1c0 --- /dev/null +++ b/changes/bug18604 @@ -0,0 +1,4 @@ + o Minor bugfixes (ephemeral hidden service) + - When deleting an ephemeral hidden service, close its intro points even + if not in the open state. Resolves ticket #18604; bugfix on + tor-0.2.7.1-alpha. |