aboutsummaryrefslogtreecommitdiff
path: root/changes
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@ev0ke.net>2014-02-21 10:14:33 +0000
committerNick Mathewson <nickm@torproject.org>2014-02-21 17:19:11 +0000
commit1532cff2ce6239df4a2320994bb791d2715e430f (patch)
treee1d28cad6449ff5a90305c806f75ad0e3f89aad9 /changes
parente616f5b51312fef55099f2a7cd93af58d2b08032 (diff)
downloadtor-1532cff2ce6239df4a2320994bb791d2715e430f.tar
tor-1532cff2ce6239df4a2320994bb791d2715e430f.tar.gz
Fix: send back correct IPv6 SOCKS5 connect reply
For a client using a SocksPort connection and IPv6, the connect reply from tor daemon did not handle AF_INET6 thus sending back the wrong payload to the client. A changes file is provided and this fixes #10987 Signed-off-by: David Goulet <dgoulet@ev0ke.net>
Diffstat (limited to 'changes')
-rw-r--r--changes/bug109875
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug10987 b/changes/bug10987
new file mode 100644
index 000000000..108eea9a4
--- /dev/null
+++ b/changes/bug10987
@@ -0,0 +1,5 @@
+ o Minor bugfixes
+ - Fix IPv6 support when using the SocksPort with SOCKS5. Fixes bug10987.
+ Using IPv6 through a SOCKS5 using the SocksPort option will now work
+ with this fix. This part of the code has never been updated to support
+ IPv6 thus this does not fix a previously introduced regression.