diff options
author | Daniel Stenberg <daniel@haxx.se> | 2018-03-21 01:03:07 +0100 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-03-21 01:04:41 +0100 |
commit | 3ff09ce777b95ad7f07544325de01983c40e2dc3 (patch) | |
tree | 929c96be0f21017acdeb24f6eada528044e82065 /docs/libcurl | |
parent | cf7b009f570e452da0490c60f896846f9b0e6c22 (diff) |
CURLINFO_SSL_VERIFYRESULT.3: fix the example, add some text
Reported-by: Michal Trybus
Fixes #2400
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.3 | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.3 b/docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.3 index 1afb693a4..b0bd54cd8 100644 --- a/docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.3 +++ b/docs/libcurl/opts/CURLINFO_SSL_VERIFYRESULT.3 @@ -5,7 +5,7 @@ .\" * | (__| |_| | _ <| |___ .\" * \___|\___/|_| \_\_____| .\" * -.\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al. +.\" * Copyright (C) 1998 - 2018, 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 @@ -31,6 +31,8 @@ CURLcode curl_easy_getinfo(CURL *handle, CURLINFO_SSL_VERIFYRESULT, long *result Pass a pointer to a long to receive the result of the server SSL certificate verification that was requested (using the \fICURLOPT_SSL_VERIFYPEER(3)\fP option. + +0 is a positive result. Non-zero is an error. .SH PROTOCOLS All using TLS .SH EXAMPLE @@ -43,12 +45,12 @@ if(curl) { res = curl_easy_perform(curl); curl_easy_getinfo(curl, CURLINFO_SSL_VERIFYRESULT, &verifyresult); printf("The peer verification said %s\\n", verifyresult? - "fine":"BAAAD"); + "BAAAD":"fine"); curl_easy_cleanup(curl); } .fi .SH AVAILABILITY -Added in 7.5 +Added in 7.5. Only set by the OpenSSL/libressl/boringssl and NSS backends. .SH RETURN VALUE Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not. .SH "SEE ALSO" |