diff options
author | Nick Mathewson <nickm@torproject.org> | 2015-01-29 14:45:21 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2015-01-29 14:46:20 -0500 |
commit | 204374f7d92997a510a7aabe5ec57f0f87a3499f (patch) | |
tree | 02c50353471c76167d4bc7c6c22af3407bdeaf22 /changes | |
parent | ebc59092bc6badaa55743d85e6095c3e2d4993ff (diff) | |
download | tor-204374f7d92997a510a7aabe5ec57f0f87a3499f.tar.gz tor-204374f7d92997a510a7aabe5ec57f0f87a3499f.zip |
Remove SocksSocket; it's now spelled differently thanks to 14451
Also, revise bug12585 changes file to mention new syntax
Diffstat (limited to 'changes')
-rw-r--r-- | changes/bug12585 | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/changes/bug12585 b/changes/bug12585 index 495a2f0d71..ac03993916 100644 --- a/changes/bug12585 +++ b/changes/bug12585 @@ -1,9 +1,12 @@ o Major features (security) - - Implementation of SocksSocket option - SocksSocket implements a SOCKS + - Implementation of an AF_UNIX socket option to implement a SOCKS proxy reachable by Unix Domain Socket. This allows client applications to communicate with Tor without having the ability to create AF_INET or AF_INET6 family sockets. If an application has permission to create a socket with AF_UNIX, it may directly communicate with Tor as if it were an other SOCKS proxy. This should allow high risk applications to be entirely prevented from connecting directly with TCP/IP, they will be able to only connect to the - internet through AF_UNIX and only through Tor. Closes ticket 12585. + internet through AF_UNIX and only through Tor. + To create a socket of this type, use the syntax "unix:/path/to/socket". + Closes ticket 12585. + |