diff options
author | David Goulet <dgoulet@torproject.org> | 2018-02-07 14:05:33 -0500 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2018-02-07 14:05:33 -0500 |
commit | 652d3a5b665f8045374eb527494dd9d80ef98d13 (patch) | |
tree | 9c2d0065c5b464755ee13daea50e8b044c74022a /src/or/or.h | |
parent | bf91da75abf84a6a61aa92adc5156ba1d5c15998 (diff) | |
download | tor-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/or.h')
-rw-r--r-- | src/or/or.h | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/src/or/or.h b/src/or/or.h index 03efdd1d81..edf89be9a3 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -1818,9 +1818,6 @@ typedef struct entry_connection_t { * the exit has sent a CONNECTED cell) and we have chosen to use it. */ unsigned int may_use_optimistic_data : 1; - - /** Are we a socks SocksSocket listener? */ - unsigned int is_socks_socket:1; } entry_connection_t; /** Subtype of connection_t for an "directory connection" -- that is, an HTTP @@ -3794,7 +3791,7 @@ typedef struct { * for control connections. */ int ControlSocketsGroupWritable; /**< Boolean: Are control sockets g+rw? */ - int SocksSocketsGroupWritable; /**< Boolean: Are SOCKS sockets g+rw? */ + int UnixSocksGroupWritable; /**< Boolean: Are SOCKS Unix sockets g+rw? */ /** Ports to listen on for directory connections. */ config_line_t *DirPort_lines; config_line_t *DNSPort_lines; /**< Ports to listen on for DNS requests. */ |