Sortix main manual
This manual documents Sortix main. You can instead view this document in the latest official manual.
CURLOPT_SSL_VERIFYHOST(3) | curl_easy_setopt options | CURLOPT_SSL_VERIFYHOST(3) |
NAME
CURLOPT_SSL_VERIFYHOST - verify the certificate's name against hostSYNOPSIS
#include <curl/curl.h>
CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SSL_VERIFYHOST, long verify);
DESCRIPTION
Pass a long as parameter specifying what to verify.LIMITATIONS
Secure Transport: If verify value is 0, then SNI is also disabled. SNI is a TLS extension that sends the hostname to the server. The server may use that information to do such things as sending back a specific certificate for the hostname, or forwarding the request to a specific origin server. Some hostnames may be inaccessible if SNI is not sent.DEFAULT
2PROTOCOLS
All TLS based protocols: HTTPS, FTPS, IMAPS, POP3S, SMTPS etc.EXAMPLE
CURL *curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "https://example.com");
/* Set the default value: strict name check please */
curl_easy_setopt(curl, CURLOPT_SSL_VERIFYHOST, 2L);
curl_easy_perform(curl);
}
AVAILABILITY
If built TLS enabled.RETURN VALUE
Returns CURLE_OK if TLS is supported, and CURLE_UNKNOWN_OPTION if not.SEE ALSO
CURLOPT_SSL_VERIFYPEER(3), CURLOPT_CAINFO(3),May 17, 2022 | libcurl 7.84.0 |