Lines Matching refs:callback
12 int (*callback)(X509_STORE_CTX *, void *),
17 SSL_CTX_set_cert_verify_callback() sets the verification callback function for
25 If the application does not explicitly specify a verification callback function,
27 If a verification callback I<callback> is specified via
28 SSL_CTX_set_cert_verify_callback(), the supplied callback function is called
29 instead with the arguments callback(X509_STORE_CTX *x509_store_ctx, void *arg).
30 The argument I<arg> is specified by the application when setting I<callback>.
31 By setting I<callback> to NULL, the default behaviour is restored.
33 I<callback> should return 1 to indicate verification success
42 In client mode I<callback> may also call the L<SSL_set_retry_verify(3)>
57 the I<callback> allows the connection to continue (by returning 1).
66 Within I<x509_store_ctx>, I<callback> has access to the I<verify_callback>
75 Do not mix the verification callback described in this function with the