2014-06-17 12:04:40 -04:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\" * _ _ ____ _
|
|
|
|
.\" * Project ___| | | | _ \| |
|
|
|
|
.\" * / __| | | | |_) | |
|
|
|
|
.\" * | (__| |_| | _ <| |___
|
|
|
|
.\" * \___|\___/|_| \_\_____|
|
|
|
|
.\" *
|
2016-08-15 08:49:26 -04:00
|
|
|
.\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
2014-06-17 12:04:40 -04:00
|
|
|
.\" *
|
|
|
|
.\" * This software is licensed as described in the file COPYING, which
|
|
|
|
.\" * you should have received as part of this distribution. The terms
|
2016-02-02 18:19:02 -05:00
|
|
|
.\" * are also available at https://curl.haxx.se/docs/copyright.html.
|
2014-06-17 12:04:40 -04:00
|
|
|
.\" *
|
|
|
|
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
|
|
|
|
.\" * copies of the Software, and permit persons to whom the Software is
|
|
|
|
.\" * furnished to do so, under the terms of the COPYING file.
|
|
|
|
.\" *
|
|
|
|
.\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
|
|
|
|
.\" * KIND, either express or implied.
|
|
|
|
.\" *
|
|
|
|
.\" **************************************************************************
|
|
|
|
.\"
|
|
|
|
.TH CURLOPT_PROXY 3 "17 Jun 2014" "libcurl 7.37.0" "curl_easy_setopt options"
|
|
|
|
.SH NAME
|
|
|
|
CURLOPT_PROXY \- set proxy to use
|
|
|
|
.SH SYNOPSIS
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PROXY, char *proxy);
|
|
|
|
.SH DESCRIPTION
|
|
|
|
Set the \fIproxy\fP to use for the upcoming request. The parameter should be a
|
2015-09-08 07:42:48 -04:00
|
|
|
char * to a zero terminated string holding the host name or dotted numerical
|
|
|
|
IP address. A numerical IPv6 address must be written within [brackets].
|
2014-06-17 12:04:40 -04:00
|
|
|
|
|
|
|
To specify port number in this string, append :[port] to the end of the host
|
|
|
|
name. The proxy's port number may optionally be specified with the separate
|
|
|
|
option \fICURLOPT_PROXYPORT(3)\fP. If not specified, libcurl will default to
|
|
|
|
using port 1080 for proxies.
|
|
|
|
|
|
|
|
The proxy string may be prefixed with [scheme]:// to specify which kind of
|
|
|
|
proxy is used. Use socks4://, socks4a://, socks5:// or socks5h:// (the last
|
|
|
|
one to enable socks5 and asking the proxy to do the resolving, also known as
|
|
|
|
\fICURLPROXY_SOCKS5_HOSTNAME\fP type) to request the specific SOCKS version to
|
2016-08-15 08:49:26 -04:00
|
|
|
be used. No scheme specified or http://, will be treated as HTTP proxies.
|
2014-06-17 12:04:40 -04:00
|
|
|
|
|
|
|
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 a HTTP proxy, libcurl will transparently
|
|
|
|
convert 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 don't work unless you
|
|
|
|
tunnel through the HTTP proxy. Such tunneling is activated with
|
|
|
|
\fICURLOPT_HTTPPROXYTUNNEL(3)\fP.
|
|
|
|
|
|
|
|
libcurl respects the environment variables \fBhttp_proxy\fP, \fBftp_proxy\fP,
|
|
|
|
\fBall_proxy\fP etc, if any of those are set. The \fICURLOPT_PROXY(3)\fP
|
|
|
|
option does however override any possibly set environment variables.
|
|
|
|
|
|
|
|
Setting the proxy string to "" (an empty string) will explicitly disable the
|
|
|
|
use of a proxy, even if there is an environment variable set for it.
|
|
|
|
|
2015-09-22 07:45:41 -04:00
|
|
|
A proxy host string can also include protocol scheme (http://) and embedded
|
|
|
|
user + password.
|
2016-12-21 08:48:35 -05:00
|
|
|
|
|
|
|
The application does not have to keep the string around after setting this
|
|
|
|
option.
|
2014-06-17 12:04:40 -04:00
|
|
|
.SH DEFAULT
|
|
|
|
Default is NULL, meaning no proxy is used.
|
|
|
|
|
|
|
|
When you set a host name to use, do not assume that there's any particular
|
|
|
|
single port number used widely for proxies. Specify it!
|
|
|
|
.SH PROTOCOLS
|
|
|
|
All except file://. Note that some protocols don't do very well over proxy.
|
|
|
|
.SH EXAMPLE
|
|
|
|
TODO
|
|
|
|
.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".
|
2016-08-15 08:49:26 -04:00
|
|
|
|
|
|
|
Since 7.50.2, unsupported schemes in proxy strings cause libcurl to return
|
|
|
|
error.
|
2014-06-17 12:04:40 -04:00
|
|
|
.SH RETURN VALUE
|
2014-06-18 17:27:24 -04:00
|
|
|
Returns CURLE_OK if proxies are supported, CURLE_UNKNOWN_OPTION if not, or
|
|
|
|
CURLE_OUT_OF_MEMORY if there was insufficient heap space.
|
2014-06-17 12:04:40 -04:00
|
|
|
.SH "SEE ALSO"
|
|
|
|
.BR CURLOPT_PROXYPORT "(3), " CURLOPT_HTTPPROXYTUNNEL "(3), "
|
|
|
|
.BR CURLOPT_PROXYTYPE "(3)"
|