2016-11-16 12:49:15 -05:00
|
|
|
.\" **************************************************************************
|
|
|
|
.\" * _ _ ____ _
|
|
|
|
.\" * Project ___| | | | _ \| |
|
|
|
|
.\" * / __| | | | |_) | |
|
|
|
|
.\" * | (__| |_| | _ <| |___
|
|
|
|
.\" * \___|\___/|_| \_\_____|
|
|
|
|
.\" *
|
|
|
|
.\" * Copyright (C) 1998 - 2016, Daniel Stenberg, <daniel@haxx.se>, et al.
|
|
|
|
.\" *
|
|
|
|
.\" * This software is licensed as described in the file COPYING, which
|
|
|
|
.\" * you should have received as part of this distribution. The terms
|
|
|
|
.\" * are also available at https://curl.haxx.se/docs/copyright.html.
|
|
|
|
.\" *
|
|
|
|
.\" * 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.
|
|
|
|
.\" *
|
|
|
|
.\" **************************************************************************
|
|
|
|
.\"
|
2016-11-21 05:01:25 -05:00
|
|
|
.TH CURLOPT_PROXY_TLSAUTH_USERNAME 3 "16 Nov 2016" "libcurl 7.52.0" "curl_easy_setopt options"
|
2016-11-16 12:49:15 -05:00
|
|
|
.SH NAME
|
|
|
|
CURLOPT_PROXY_TLSAUTH_USERNAME \- user name to use for proxy TLS authentication
|
|
|
|
.SH SYNOPSIS
|
|
|
|
#include <curl/curl.h>
|
|
|
|
|
|
|
|
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PROXY_TLSAUTH_USERNAME, char *user);
|
|
|
|
.SH DESCRIPTION
|
|
|
|
Pass a char * as parameter, which should point to the zero terminated username
|
2016-12-16 10:57:39 -05:00
|
|
|
to use for the HTTPS proxy TLS authentication method specified with the
|
|
|
|
\fICURLOPT_PROXY_TLSAUTH_TYPE(3)\fP option. Requires that the
|
|
|
|
\fICURLOPT_PROXY_TLSAUTH_PASSWORD(3)\fP option also be set.
|
2016-12-21 08:48:35 -05:00
|
|
|
|
|
|
|
The application does not have to keep the string around after setting this
|
|
|
|
option.
|
2016-11-16 12:49:15 -05:00
|
|
|
.SH DEFAULT
|
|
|
|
NULL
|
|
|
|
.SH PROTOCOLS
|
2016-12-16 10:57:39 -05:00
|
|
|
All
|
2016-11-16 12:49:15 -05:00
|
|
|
.SH EXAMPLE
|
|
|
|
TODO
|
2016-12-16 10:57:39 -05:00
|
|
|
.SH AVAILABILITY
|
|
|
|
Added in 7.52.0
|
2016-11-16 12:49:15 -05:00
|
|
|
.SH RETURN VALUE
|
|
|
|
Returns CURLE_OK if the option is supported, CURLE_UNKNOWN_OPTION if not, or
|
|
|
|
CURLE_OUT_OF_MEMORY if there was insufficient heap space.
|
|
|
|
.SH "SEE ALSO"
|
2016-12-16 10:57:39 -05:00
|
|
|
.BR CURLOPT_PROXY_TLSAUTH_TYPE "(3), " CURLOPT_PROXY_TLSAUTH_PASSWORD "(3), "
|
2016-11-16 12:49:15 -05:00
|
|
|
.BR CURLOPT_TLSAUTH_TYPE "(3), " CURLOPT_TLSAUTH_PASSWORD "(3), "
|