diff options
author | Nick Mathewson <nickm@torproject.org> | 2016-10-05 12:38:03 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2016-10-05 12:44:53 -0400 |
commit | 785176e97545b2e7fc65bb80cf7aa13c9adc3fc4 (patch) | |
tree | f8dc5b27a1e104cd5f425c1efb8350e4be85ee23 /changes | |
parent | 684500519d5060fcbcc410a0e71d8d9a32fa8220 (diff) | |
download | tor-785176e97545b2e7fc65bb80cf7aa13c9adc3fc4.tar.gz tor-785176e97545b2e7fc65bb80cf7aa13c9adc3fc4.zip |
Clean up and fix exit policy check in connection_exit_connect().
Previously, we would reject even rendezvous connections to IPv6
addresses when IPv6Exit was false. But that doesn't make sense; we
don't count that as "exit"ing. I've corrected the logic and tried
to make it a lottle more clear.
Fixes bug 18357; this code has been wrong since 9016d9e8294a352 in
0.2.4.7-alpha.
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug18357 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug18357 b/changes/bug18357 new file mode 100644 index 0000000000..5f19d1454e --- /dev/null +++ b/changes/bug18357 @@ -0,0 +1,5 @@ + o Minor bugfixes (hidden service): + - Allow hidden services to run on IPv6 addresses even when the + IPv6Exit option is not set. Fixes bug 18357; bugfix on + 0.2.4.7-alpha. + |