2
0

CURLOPT_PROXY.3 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121
  1. .\" **************************************************************************
  2. .\" * _ _ ____ _
  3. .\" * Project ___| | | | _ \| |
  4. .\" * / __| | | | |_) | |
  5. .\" * | (__| |_| | _ <| |___
  6. .\" * \___|\___/|_| \_\_____|
  7. .\" *
  8. .\" * Copyright (C) 1998 - 2022, Daniel Stenberg, <daniel@haxx.se>, et al.
  9. .\" *
  10. .\" * This software is licensed as described in the file COPYING, which
  11. .\" * you should have received as part of this distribution. The terms
  12. .\" * are also available at https://curl.se/docs/copyright.html.
  13. .\" *
  14. .\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
  15. .\" * copies of the Software, and permit persons to whom the Software is
  16. .\" * furnished to do so, under the terms of the COPYING file.
  17. .\" *
  18. .\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
  19. .\" * KIND, either express or implied.
  20. .\" *
  21. .\" **************************************************************************
  22. .\"
  23. .TH CURLOPT_PROXY 3 "17 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
  24. .SH NAME
  25. CURLOPT_PROXY \- proxy to use
  26. .SH SYNOPSIS
  27. .nf
  28. #include <curl/curl.h>
  29. CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PROXY, char *proxy);
  30. .fi
  31. .SH DESCRIPTION
  32. Set the \fIproxy\fP to use for the upcoming request. The parameter should be a
  33. char * to a null-terminated string holding the host name or dotted numerical
  34. IP address. A numerical IPv6 address must be written within [brackets].
  35. To specify port number in this string, append :[port] to the end of the host
  36. name. The proxy's port number may optionally be specified with the separate
  37. option \fICURLOPT_PROXYPORT(3)\fP. If not specified, libcurl will default to
  38. using port 1080 for proxies.
  39. The proxy string may be prefixed with [scheme]:// to specify which kind of
  40. proxy is used.
  41. .RS
  42. .IP http://
  43. HTTP Proxy. Default when no scheme or proxy type is specified.
  44. .IP https://
  45. HTTPS Proxy. (Added in 7.52.0 for OpenSSL, GnuTLS and NSS)
  46. .IP socks4://
  47. SOCKS4 Proxy.
  48. .IP socks4a://
  49. SOCKS4a Proxy. Proxy resolves URL hostname.
  50. .IP socks5://
  51. SOCKS5 Proxy.
  52. .IP socks5h://
  53. SOCKS5 Proxy. Proxy resolves URL hostname.
  54. .RE
  55. Without a scheme prefix, \fICURLOPT_PROXYTYPE(3)\fP can be used to specify
  56. which kind of proxy the string identifies.
  57. When you tell the library to use an HTTP proxy, libcurl will transparently
  58. convert operations to HTTP even if you specify an FTP URL etc. This may have
  59. an impact on what other features of the library you can use, such as
  60. \fICURLOPT_QUOTE(3)\fP and similar FTP specifics that do not work unless you
  61. tunnel through the HTTP proxy. Such tunneling is activated with
  62. \fICURLOPT_HTTPPROXYTUNNEL(3)\fP.
  63. Setting the proxy string to "" (an empty string) will explicitly disable the
  64. use of a proxy, even if there is an environment variable set for it.
  65. A proxy host string can also include protocol scheme (http://) and embedded
  66. user + password.
  67. Unix domain sockets are supported for socks proxies since 7.84.0. Set
  68. localhost for the host part. e.g. socks5h://localhost/path/to/socket.sock
  69. The application does not have to keep the string around after setting this
  70. option.
  71. .SH "Environment variables"
  72. libcurl respects the proxy environment variables named \fBhttp_proxy\fP,
  73. \fBftp_proxy\fP, \fBsftp_proxy\fP etc. If set, libcurl will use the specified
  74. proxy for that URL scheme. So for a "FTP://" URL, the \fBftp_proxy\fP is
  75. considered. \fBall_proxy\fP is used if no protocol specific proxy was set.
  76. If \fBno_proxy\fP (or \fBNO_PROXY\fP) is set, it is the exact equivalent of
  77. setting the \fICURLOPT_NOPROXY(3)\fP option.
  78. The \fICURLOPT_PROXY(3)\fP and \fICURLOPT_NOPROXY(3)\fP options override
  79. environment variables.
  80. .SH DEFAULT
  81. Default is NULL, meaning no proxy is used.
  82. When you set a host name to use, do not assume that there's any particular
  83. single port number used widely for proxies. Specify it!
  84. .SH PROTOCOLS
  85. All except file://. Note that some protocols do not work well over proxy.
  86. .SH EXAMPLE
  87. .nf
  88. CURL *curl = curl_easy_init();
  89. if(curl) {
  90. curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/file.txt");
  91. curl_easy_setopt(curl, CURLOPT_PROXY, "http://proxy:80");
  92. curl_easy_perform(curl);
  93. }
  94. .fi
  95. .SH AVAILABILITY
  96. Since 7.14.1 the proxy environment variable names can include the protocol
  97. scheme.
  98. Since 7.21.7 the proxy string supports the socks protocols as "schemes".
  99. Since 7.50.2, unsupported schemes in proxy strings cause libcurl to return
  100. error.
  101. .SH RETURN VALUE
  102. Returns CURLE_OK if proxies are supported, CURLE_UNKNOWN_OPTION if not, or
  103. CURLE_OUT_OF_MEMORY if there was insufficient heap space.
  104. .SH "SEE ALSO"
  105. .BR CURLOPT_PROXYPORT "(3), " CURLOPT_HTTPPROXYTUNNEL "(3), "
  106. .BR CURLOPT_PROXYTYPE "(3)"