turns printfs back on
[freebsd-src/fkvm-freebsd.git] / crypto / openssl / doc / ssl / SSL_CTX_get_verify_mode.pod
blob2a3747e75c64bef55a942d34c105a61484a09212
1 =pod
3 =head1 NAME
5 SSL_CTX_get_verify_mode, SSL_get_verify_mode, SSL_CTX_get_verify_depth, SSL_get_verify_depth, SSL_get_verify_callback, SSL_CTX_get_verify_callback - get currently set verification parameters
7 =head1 SYNOPSIS
9  #include <openssl/ssl.h>
11  int SSL_CTX_get_verify_mode(const SSL_CTX *ctx);
12  int SSL_get_verify_mode(const SSL *ssl);
13  int SSL_CTX_get_verify_depth(const SSL_CTX *ctx);
14  int SSL_get_verify_depth(const SSL *ssl);
15  int (*SSL_CTX_get_verify_callback(const SSL_CTX *ctx))(int, X509_STORE_CTX *);
16  int (*SSL_get_verify_callback(const SSL *ssl))(int, X509_STORE_CTX *);
18 =head1 DESCRIPTION
20 SSL_CTX_get_verify_mode() returns the verification mode currently set in
21 B<ctx>.
23 SSL_get_verify_mode() returns the verification mode currently set in
24 B<ssl>.
26 SSL_CTX_get_verify_depth() returns the verification depth limit currently set
27 in B<ctx>. If no limit has been explicitly set, -1 is returned and the
28 default value will be used.
30 SSL_get_verify_depth() returns the verification depth limit currently set
31 in B<ssl>. If no limit has been explicitly set, -1 is returned and the
32 default value will be used.
34 SSL_CTX_get_verify_callback() returns a function pointer to the verification
35 callback currently set in B<ctx>. If no callback was explicitly set, the
36 NULL pointer is returned and the default callback will be used.
38 SSL_get_verify_callback() returns a function pointer to the verification
39 callback currently set in B<ssl>. If no callback was explicitly set, the
40 NULL pointer is returned and the default callback will be used.
42 =head1 RETURN VALUES
44 See DESCRIPTION
46 =head1 SEE ALSO
48 L<ssl(3)|ssl(3)>, L<SSL_CTX_set_verify(3)|SSL_CTX_set_verify(3)>
50 =cut