mirror of
https://github.com/curl/curl.git
synced 2026-07-30 18:28:08 +03:00
curl --socks5-{basic,gssapi}: control socks5 auth
Closes https://github.com/curl/curl/pull/1454
This commit is contained in:
parent
8924f58c37
commit
ce2c3ebda2
9 changed files with 46 additions and 0 deletions
|
|
@ -33,6 +33,7 @@ DPAGES = abstract-unix-socket.d anyauth.d append.d basic.d cacert.d capath.d cer
|
|||
remote-name-all.d remote-name.d remote-time.d request.d resolve.d \
|
||||
retry-connrefused.d retry.d retry-delay.d retry-max-time.d sasl-ir.d \
|
||||
service-name.d show-error.d silent.d socks4a.d socks4.d socks5.d \
|
||||
socks5-basic.d socks5-gssapi.d \
|
||||
socks5-gssapi-nec.d socks5-gssapi-service.d socks5-hostname.d \
|
||||
speed-limit.d speed-time.d ssl-allow-beast.d ssl.d ssl-no-revoke.d \
|
||||
ssl-reqd.d sslv2.d sslv3.d stderr.d suppress-connect-headers.d \
|
||||
|
|
|
|||
7
docs/cmdline-opts/socks5-basic.d
Normal file
7
docs/cmdline-opts/socks5-basic.d
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
Long: socks5-basic
|
||||
Help: Enable username/password auth for SOCKS5 proxies
|
||||
Added: 7.55.0
|
||||
---
|
||||
Tells curl to use username/password authentication when connecting to a SOCKS5
|
||||
proxy. The username/password authentication is enabled by default. Use
|
||||
--socks5-gssapi to force GSS-API authentication to SOCKS5 proxies.
|
||||
8
docs/cmdline-opts/socks5-gssapi.d
Normal file
8
docs/cmdline-opts/socks5-gssapi.d
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
Long: socks5-gssapi
|
||||
Help: Enable GSS-API auth for SOCKS5 proxies
|
||||
Added: 7.55.0
|
||||
---
|
||||
Tells curl to use GSS-API authentication when connecting to a SOCKS5 proxy.
|
||||
The GSS-API authentication is enabled by default (if curl is compiled with
|
||||
GSS-API support). Use --socks5-basic to force username/password authentication
|
||||
to SOCKS5 proxies.
|
||||
Loading…
Add table
Add a link
Reference in a new issue