aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2016-12-16 16:57:39 +0100
committerng0 <ng0@infotropique.org>2017-08-22 15:10:45 +0000
commit770f319117c47bd2423f8641600187da852d0605 (patch)
tree37c01d90b0f0e26bc39aa5e290613959954f89c3 /docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3
parentf19b95f44cb1d89e5212b12bfe37c4e9bd6424e2 (diff)
downloadgnurl-770f319117c47bd2423f8641600187da852d0605.tar.gz
gnurl-770f319117c47bd2423f8641600187da852d0605.tar.bz2
gnurl-770f319117c47bd2423f8641600187da852d0605.zip
HTTPS-PROXY docs: update/polish
Diffstat (limited to 'docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3')
-rw-r--r--docs/libcurl/opts/CURLOPT_PROXY_CAPATH.316
1 files changed, 7 insertions, 9 deletions
diff --git a/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3 b/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3
index d1dfb06a0..871d8c9b8 100644
--- a/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3
+++ b/docs/libcurl/opts/CURLOPT_PROXY_CAPATH.3
@@ -28,22 +28,20 @@ CURLOPT_PROXY_CAPATH \- specify directory holding proxy CA certificates
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_PROXY_CAPATH, char *capath);
.SH DESCRIPTION
-TODO: Make this text specific to HTTPS proxy. (Added in 7.XXX)
Pass a char * to a zero terminated string naming a directory holding multiple
-CA certificates to verify the peer with. If libcurl is built against OpenSSL,
-the certificate directory must be prepared using the openssl c_rehash utility.
-This makes sense only when used in combination with the
-\fICURLOPT_SSL_VERIFYPEER(3)\fP option.
-
-The \fICURLOPT_CAPATH(3)\fP function apparently does not work in Windows due
-to some limitation in openssl.
+CA certificates to verify the HTTPS proxy with. If libcurl is built against
+OpenSSL, the certificate directory must be prepared using the openssl c_rehash
+utility. This makes sense only when \fICURLOPT_SSL_VERIFYPEER(3)\fP is enabled
+(which it is by default).
.SH DEFAULT
NULL
.SH PROTOCOLS
-All TLS based protocols: HTTPS, FTPS, IMAPS, POP3S, SMTPS etc.
+Everything used over an HTTPS proxy
.SH EXAMPLE
TODO
.SH AVAILABILITY
+Added in 7.52.0
+
This option is supported by the OpenSSL, GnuTLS and PolarSSL backends. The NSS
backend provides the option only for backward compatibility.
.SH RETURN VALUE