Lines Matching refs:callback
9 - handle information callback for SSL connections
15 void SSL_CTX_set_info_callback(SSL_CTX *ctx, void (*callback)());
18 void SSL_set_info_callback(SSL *ssl, void (*callback)());
23 SSL_CTX_set_info_callback() sets the B<callback> function, that can be used to
27 When B<callback> is NULL, no callback function is used.
29 SSL_set_info_callback() sets the B<callback> function, that can be used to
31 When B<callback> is NULL, the callback setting currently valid for
35 callback function for B<ctx>.
38 callback function for B<ssl>.
43 information from the SSL/TLS engine. When set, an information callback function
47 The callback function is called as B<callback(SSL *ssl, int where, int ret)>.
49 the callback function was called. If B<ret> is 0, an error condition occurred.
60 state machine event. This may mean that the callback gets invoked more than once
119 The following example callback function prints state strings, information