mirror of
https://github.com/moparisthebest/curl
synced 2024-11-17 06:55:02 -05:00
CURLINFO_SSL_VERIFYRESULT.3: fix the example, add some text
Reported-by: Michal Trybus Fixes #2400
This commit is contained in:
parent
cf7b009f57
commit
3ff09ce777
@ -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
|
.\" * This software is licensed as described in the file COPYING, which
|
||||||
.\" * you should have received as part of this distribution. The terms
|
.\" * 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
|
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
|
verification that was requested (using the \fICURLOPT_SSL_VERIFYPEER(3)\fP
|
||||||
option.
|
option.
|
||||||
|
|
||||||
|
0 is a positive result. Non-zero is an error.
|
||||||
.SH PROTOCOLS
|
.SH PROTOCOLS
|
||||||
All using TLS
|
All using TLS
|
||||||
.SH EXAMPLE
|
.SH EXAMPLE
|
||||||
@ -43,12 +45,12 @@ if(curl) {
|
|||||||
res = curl_easy_perform(curl);
|
res = curl_easy_perform(curl);
|
||||||
curl_easy_getinfo(curl, CURLINFO_SSL_VERIFYRESULT, &verifyresult);
|
curl_easy_getinfo(curl, CURLINFO_SSL_VERIFYRESULT, &verifyresult);
|
||||||
printf("The peer verification said %s\\n", verifyresult?
|
printf("The peer verification said %s\\n", verifyresult?
|
||||||
"fine":"BAAAD");
|
"BAAAD":"fine");
|
||||||
curl_easy_cleanup(curl);
|
curl_easy_cleanup(curl);
|
||||||
}
|
}
|
||||||
.fi
|
.fi
|
||||||
.SH AVAILABILITY
|
.SH AVAILABILITY
|
||||||
Added in 7.5
|
Added in 7.5. Only set by the OpenSSL/libressl/boringssl and NSS backends.
|
||||||
.SH RETURN VALUE
|
.SH RETURN VALUE
|
||||||
Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
|
Returns CURLE_OK if the option is supported, and CURLE_UNKNOWN_OPTION if not.
|
||||||
.SH "SEE ALSO"
|
.SH "SEE ALSO"
|
||||||
|
Loading…
Reference in New Issue
Block a user