mirror of
https://github.com/moparisthebest/curl
synced 2024-11-05 09:05:04 -05:00
d2bcf1e3e2
- Add new option CURLOPT_SUPPRESS_CONNECT_HEADERS to allow suppressing proxy CONNECT response headers from the user callback functions CURLOPT_HEADERFUNCTION and CURLOPT_WRITEFUNCTION. - Add new tool option --suppress-connect-headers to expose CURLOPT_SUPPRESS_CONNECT_HEADERS and allow suppressing proxy CONNECT response headers from --dump-header and --include. Assisted-by: Jay Satiro Assisted-by: CarloCannas@users.noreply.github.com Closes https://github.com/curl/curl/pull/783
14 lines
561 B
Makefile
14 lines
561 B
Makefile
Long: proxytunnel
|
|
Short: p
|
|
Help: Operate through a HTTP proxy tunnel (using CONNECT)
|
|
See-also: proxy
|
|
---
|
|
When an HTTP proxy is used --proxy, this option will cause non-HTTP protocols
|
|
to attempt to tunnel through the proxy instead of merely using it to do
|
|
HTTP-like operations. The tunnel approach is made with the HTTP proxy CONNECT
|
|
request and requires that the proxy allows direct connect to the remote port
|
|
number curl wants to tunnel through to.
|
|
|
|
To suppress proxy CONNECT response headers when curl is set to output headers
|
|
use --suppress-connect-headers.
|