mojave man page for curlopt_ssl_verifystatus

Query: curlopt_ssl_verifystatus

OS: mojave

Section: 3

Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar

CURLOPT_SSL_VERIFYSTATUS(3)				     curl_easy_setopt options				       CURLOPT_SSL_VERIFYSTATUS(3)

NAME
CURLOPT_SSL_VERIFYSTATUS - verify the certificate's status
SYNOPSIS
#include <curl/curl.h> CURLcode curl_easy_setopt(CURL *handle, CURLOPT_SSL_VERIFYSTATUS, long verify);
DESCRIPTION
Pass a long as parameter set to 1 to enable or 0 to disable. This option determines whether libcurl verifies the status of the server cert using the "Certificate Status Request" TLS extension (aka. OCSP stapling). Note that if this option is enabled but the server does not support the TLS extension, the verification will fail.
DEFAULT
0
PROTOCOLS
All TLS based protocols: HTTPS, FTPS, IMAPS, POP3S, SMTPS etc.
EXAMPLE
TODO
AVAILABILITY
Added in 7.41.0. This option is currently only supported by the OpenSSL, GnuTLS and NSS TLS backends.
RETURN VALUE
Returns CURLE_OK if OCSP stapling is supported by the SSL backend, otherwise returns CURLE_NOT_BUILT_IN.
SEE ALSO
CURLOPT_SSL_VERIFYHOST(3), CURLOPT_SSL_VERIFYPEER(3), CURLOPT_CAINFO(3), libcurl 7.54.0 February 03, 2016 CURLOPT_SSL_VERIFYSTATUS(3)
Related Man Pages
curlopt_capath(3) - mojave
curlopt_certinfo(3) - mojave
curlopt_keypasswd(3) - mojave
curlopt_sslcert(3) - mojave
curlopt_ssl_verifystatus(3) - mojave
Similar Topics in the Unix Linux Community
Keychain Access: OCSP and CRL Certificates choices dimmed in Mac OS X v10.6
Implementing TLS with Sendmail and having problem with cert request
curl certificate error
FTPS Connection script
Best way to transfer files to remote FTPS server instead of local FTPS server