proxytunnel.md (678B)
1 --- 2 c: Copyright (C) Daniel Stenberg, <daniel@haxx.se>, et al. 3 SPDX-License-Identifier: curl 4 Long: proxytunnel 5 Short: p 6 Help: HTTP proxy tunnel (using CONNECT) 7 Category: proxy 8 Added: 7.3 9 Multi: boolean 10 See-also: 11 - proxy 12 Example: 13 - --proxytunnel -x http://proxy $URL 14 --- 15 16 # `--proxytunnel` 17 18 When an HTTP proxy is used --proxy, this option makes curl tunnel the traffic 19 through the proxy. The tunnel approach is made with the HTTP proxy CONNECT 20 request and requires that the proxy allows direct connection to the remote port 21 number curl wants to tunnel through to. 22 23 To suppress proxy CONNECT response headers when curl is set to output headers 24 use --suppress-connect-headers.