proxytunnel.d 652 B

1234567891011121314151617
  1. c: Copyright (C) 1998 - 2022, Daniel Stenberg, <[email protected]>, et al.
  2. SPDX-License-Identifier: curl
  3. Long: proxytunnel
  4. Short: p
  5. Help: Operate through an HTTP proxy tunnel (using CONNECT)
  6. See-also: proxy
  7. Category: proxy
  8. Example: --proxytunnel -x http://proxy $URL
  9. Added: 7.3
  10. ---
  11. When an HTTP proxy is used --proxy, this option will make curl tunnel through
  12. the proxy. The tunnel approach is made with the HTTP proxy CONNECT request and
  13. requires that the proxy allows direct connect to the remote port number curl
  14. wants to tunnel through to.
  15. To suppress proxy CONNECT response headers when curl is set to output headers
  16. use --suppress-connect-headers.