Lines Matching full: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.
63 Callback has been called to indicate state change or some other significant
64 state machine event. This may mean that the callback gets invoked more than once
69 Callback has been called to indicate exit of a handshake function. This will
75 Callback has been called during read operation.
79 Callback has been called during write operation.
83 Callback has been called due to an alert being sent or received.
99 Callback has been called because a new handshake is started. It also occurs when
104 Callback has been called because a handshake is finished. It also occurs if the
123 The following example callback function prints state strings, information