Lines Matching refs:callback
32 with a session, and placed into a session ticket. Either callback function may
35 B<gen_cb> is the application defined callback invoked when a session ticket is
39 callback is defined as type B<SSL_CTX_generate_session_ticket_fn>.
41 B<dec_cb> is the application defined callback invoked after session ticket
48 B<dec_cb> callback is defined as type B<SSL_CTX_decrypt_session_ticket_fn>.
68 When the B<dec_cb> callback is invoked, the SSL_SESSION B<ss> has not yet been
70 decryption. The callback must check the B<status> value before performing any
122 If the callback does not wish to change the default ticket behaviour then it
129 the callback to return this value if B<status> has a value other than
132 If the callback does not wish to change the default ticket behaviour then it
138 callback to return this value if B<status> has a value other than
141 If the callback does not wish to change the default ticket behaviour then it
147 no session data will be available and the callback must not use the B<ss>
153 When the B<gen_cb> callback is invoked, the SSL_get_session() function can be
159 this behaviour can be changed if a ticket key callback is in use (see
168 The B<gen_cb> callback must return 1 to continue the connection. A return of 0
171 The B<dec_cb> callback must return a value as described in L</NOTES> above.