mirror of
https://codeberg.org/kiss-community/repo
synced 2024-11-19 21:20:07 -07:00
112 lines
3.9 KiB
Groff
112 lines
3.9 KiB
Groff
.\" generated by cd2nroff 0.1 from CURLOPT_PROXY.md
|
|
.TH CURLOPT_PROXY 3 libcurl
|
|
.SH NAME
|
|
CURLOPT_PROXY \- proxy to use
|
|
.SH SYNOPSIS
|
|
.nf
|
|
#include <curl/curl.h>
|
|
|
|
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PROXY, char *proxy);
|
|
.fi
|
|
.SH DESCRIPTION
|
|
Set the \fIproxy\fP to use for transfers with this easy handle. The parameter
|
|
should be a char * to a null\-terminated string holding the hostname or dotted
|
|
numerical IP address. A numerical IPv6 address must be written within
|
|
[brackets].
|
|
|
|
To specify port number in this string, append :[port] to the end of the host
|
|
name. The proxy\(aqs port number may optionally (but discouraged) be specified
|
|
with the separate option \fICURLOPT_PROXYPORT(3)\fP. If not specified, libcurl
|
|
defaults to using port 1080 for proxies.
|
|
|
|
The proxy string may be prefixed with [scheme]:// to specify which kind of
|
|
proxy is used.
|
|
.IP http://
|
|
HTTP Proxy. Default when no scheme or proxy type is specified.
|
|
.IP https://
|
|
HTTPS Proxy. (Added in 7.52.0 for OpenSSL and GnuTLS Since 7.87.0, it
|
|
also works for BearSSL, mbedTLS, rustls, Schannel, Secure Transport and
|
|
wolfSSL.)
|
|
|
|
This uses HTTP/1 by default. Setting \fICURLOPT_PROXYTYPE(3)\fP to
|
|
\fBCURLPROXY_HTTPS2\fP allows libcurl to negotiate using HTTP/2 with proxy.
|
|
.IP socks4://
|
|
SOCKS4 Proxy.
|
|
.IP socks4a://
|
|
SOCKS4a Proxy. Proxy resolves URL hostname.
|
|
.IP socks5://
|
|
SOCKS5 Proxy.
|
|
.IP socks5h://
|
|
SOCKS5 Proxy. Proxy resolves URL hostname.
|
|
|
|
Without a scheme prefix, \fICURLOPT_PROXYTYPE(3)\fP can be used to specify
|
|
which kind of proxy the string identifies.
|
|
|
|
When you tell the library to use an HTTP proxy, libcurl transparently converts
|
|
operations to HTTP even if you specify an FTP URL etc. This may have an impact
|
|
on what other features of the library you can use, such as
|
|
\fICURLOPT_QUOTE(3)\fP and similar FTP specifics that do not work unless you
|
|
tunnel through the HTTP proxy. Such tunneling is activated with
|
|
\fICURLOPT_HTTPPROXYTUNNEL(3)\fP.
|
|
|
|
Setting the proxy string to "" (an empty string) explicitly disables the use
|
|
of a proxy, even if there is an environment variable set for it.
|
|
|
|
A proxy host string can also include protocol scheme (http://) and embedded
|
|
user + password.
|
|
|
|
Unix domain sockets are supported for socks proxies since 7.84.0. Set
|
|
localhost for the host part. e.g. socks5h://localhost/path/to/socket.sock
|
|
|
|
The application does not have to keep the string around after setting this
|
|
option.
|
|
|
|
When a proxy is used, the active FTP mode as set with \fICUROPT_FTPPORT(3)\fP,
|
|
cannot be used.
|
|
.SH Environment variables
|
|
libcurl respects the proxy environment variables named \fBhttp_proxy\fP,
|
|
\fBftp_proxy\fP, \fBsftp_proxy\fP etc. If set, libcurl uses the specified proxy
|
|
for that URL scheme. For an "FTP://" URL, the \fBftp_proxy\fP is
|
|
considered. \fBall_proxy\fP is used if no protocol specific proxy was set.
|
|
|
|
If \fBno_proxy\fP (or \fBNO_PROXY\fP) is set, it is the exact equivalent of
|
|
setting the \fICURLOPT_NOPROXY(3)\fP option.
|
|
|
|
The \fICURLOPT_PROXY(3)\fP and \fICURLOPT_NOPROXY(3)\fP options override environment
|
|
variables.
|
|
.SH DEFAULT
|
|
Default is NULL, meaning no proxy is used.
|
|
|
|
When you set a hostname to use, do not assume that there is any particular
|
|
single port number used widely for proxies. Specify it!
|
|
.SH PROTOCOLS
|
|
All
|
|
.SH EXAMPLE
|
|
.nf
|
|
int main(void)
|
|
{
|
|
CURL *curl = curl_easy_init();
|
|
if(curl) {
|
|
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com/file.txt");
|
|
curl_easy_setopt(curl, CURLOPT_PROXY, "http://proxy:80");
|
|
curl_easy_perform(curl);
|
|
}
|
|
}
|
|
.fi
|
|
.SH AVAILABILITY
|
|
Since 7.14.1 the proxy environment variable names can include the protocol
|
|
scheme.
|
|
|
|
Since 7.21.7 the proxy string supports the socks protocols as "schemes".
|
|
|
|
Since 7.50.2, unsupported schemes in proxy strings cause libcurl to return
|
|
error.
|
|
.SH RETURN VALUE
|
|
Returns CURLE_OK if proxies are supported, CURLE_UNKNOWN_OPTION if not, or
|
|
CURLE_OUT_OF_MEMORY if there was insufficient heap space.
|
|
.SH SEE ALSO
|
|
.BR CURLOPT_HTTPPROXYTUNNEL (3),
|
|
.BR CURLOPT_PRE_PROXY (3),
|
|
.BR CURLOPT_PROXYPORT (3),
|
|
.BR CURLOPT_PROXYTYPE (3)
|