Lines Matching refs:callback
9 - handle information callback for SSL connections
16 void (*callback) (const SSL *ssl, int type, int val));
21 void (*callback) (const SSL *ssl, int type, int val));
27 SSL_CTX_set_info_callback() sets the B<callback> function, that can be used to
31 When B<callback> is NULL, no callback function is used.
33 SSL_set_info_callback() sets the B<callback> function, that can be used to
35 When B<callback> is NULL, the callback setting currently valid for
39 callback function for B<ctx>.
42 callback function for B<ssl>.
47 information from the SSL/TLS engine. When set, an information callback function
51 The callback function is called as B<callback(SSL *ssl, int where, int ret)>.
53 the callback function was called. If B<ret> is 0, an error condition occurred.
64 state machine event. This may mean that the callback gets invoked more than once
123 The following example callback function prints state strings, information