1
0
Fork 0
mirror of https://repo.or.cz/socat.git synced 2025-07-14 23:33:23 +00:00

Added socks5 client feature for connect and listen (experimental)

This commit is contained in:
Gerhard Rieger 2023-11-05 20:46:22 +01:00
parent ebacb7c4e8
commit 7b66b53f93
10 changed files with 758 additions and 2 deletions

View file

@ -207,6 +207,12 @@ const struct addrname addressnames[] = {
#if WITH_SOCKS4A
{ "SOCKS4A", &xioaddr_socks4a_connect },
#endif
#if WITH_SOCKS5
{ "SOCKS5", &xioaddr_socks5_connect },
{ "SOCKS5-BIND", &xioaddr_socks5_listen },
{ "SOCKS5-CONNECT", &xioaddr_socks5_connect },
{ "SOCKS5-LISTEN", &xioaddr_socks5_listen },
#endif
#if WITH_OPENSSL
{ "SSL", &xioaddr_openssl },
#if WITH_LISTEN