summaryrefslogtreecommitdiff
path: root/src/or/connection.c
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2018-02-07 14:05:33 -0500
committerDavid Goulet <dgoulet@torproject.org>2018-02-07 14:05:33 -0500
commit652d3a5b665f8045374eb527494dd9d80ef98d13 (patch)
tree9c2d0065c5b464755ee13daea50e8b044c74022a /src/or/connection.c
parentbf91da75abf84a6a61aa92adc5156ba1d5c15998 (diff)
downloadtor-652d3a5b665f8045374eb527494dd9d80ef98d13.tar.gz
tor-652d3a5b665f8045374eb527494dd9d80ef98d13.zip
Remove anything related to the old SocksSockets option
At this commit, the SocksSocketsGroupWritable option is renamed to UnixSocksGroupWritable. A deprecated warning is triggered if the old option is used and tor will use it properly. Fixes #24343 Signed-off-by: David Goulet <dgoulet@torproject.org>
Diffstat (limited to 'src/or/connection.c')
-rw-r--r--src/or/connection.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/or/connection.c b/src/or/connection.c
index fb87e5b05f..2a6b10763e 100644
--- a/src/or/connection.c
+++ b/src/or/connection.c
@@ -336,8 +336,6 @@ entry_connection_new(int type, int socket_family)
entry_conn->entry_cfg.ipv4_traffic = 1;
else if (socket_family == AF_INET6)
entry_conn->entry_cfg.ipv6_traffic = 1;
- else if (socket_family == AF_UNIX)
- entry_conn->is_socks_socket = 1;
return entry_conn;
}