diff options
author | Kris Katterjohn <katterjohn@gmail.com> | 2019-01-07 17:28:21 -0600 |
---|---|---|
committer | Kris Katterjohn <katterjohn@gmail.com> | 2019-01-07 17:28:21 -0600 |
commit | c59b572e934ec501cf7db78d10e36a6cf984b97b (patch) | |
tree | addc8f96f980ccfc4255a520cdf55e76f5cbe8cd /changes/bug28995 | |
parent | 52b508735f4e3a58e6d9c808f7815bba66f5190e (diff) | |
download | tor-c59b572e934ec501cf7db78d10e36a6cf984b97b.tar.gz tor-c59b572e934ec501cf7db78d10e36a6cf984b97b.zip |
Fix tor_ersatz_socketpair on IPv6-only systems
In get_local_listener used by tor_ersatz_socketpair, the address
family used when binding the IPv6 socket was AF_INET instead of
AF_INET6.
Fixes bug 28995; bugfix on 0.3.5.1-alpha.
Signed-off-by: Kris Katterjohn <katterjohn@gmail.com>
Diffstat (limited to 'changes/bug28995')
-rw-r--r-- | changes/bug28995 | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/changes/bug28995 b/changes/bug28995 new file mode 100644 index 0000000000..f76b6a085a --- /dev/null +++ b/changes/bug28995 @@ -0,0 +1,5 @@ + o Minor bugfix (IPv6): + Fix tor_ersatz_socketpair on IPv6-only systems. Previously, + the IPv6 socket was bound using an address family of AF_INET + instead of AF_INET6. Fixes bug 28995; bugfix on 0.3.5.1-alpha. + Patch from Kris Katterjohn. |