mirror of
https://repo.or.cz/socat.git
synced 2025-07-15 23:53:25 +00:00
Added socks5 client feature for connect and listen (experimental)
This commit is contained in:
parent
ebacb7c4e8
commit
7b66b53f93
10 changed files with 758 additions and 2 deletions
5
socat.c
5
socat.c
|
@ -610,6 +610,11 @@ void socat_version(FILE *fd) {
|
|||
#else
|
||||
fputs(" #undef WITH_SOCKS4A\n", fd);
|
||||
#endif
|
||||
#ifdef WITH_SOCKS5
|
||||
fprintf(fd, " #define WITH_SOCKS5 %d\n", WITH_SOCKS5);
|
||||
#else
|
||||
fputs(" #undef WITH_SOCKS5\n", fd);
|
||||
#endif
|
||||
#ifdef WITH_VSOCK
|
||||
fprintf(fd, " #define WITH_VSOCK %d\n", WITH_VSOCK);
|
||||
#else
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue