Callback invoked with the TLS session-ticket extension payload.
Declared in <openssl/ssl.h>
typedef int(* tls_session_ticket_ext_cb_fn)(SSL*, unsigned char const*, int, void*);
1 on success, or 0 to fail the handshake / reject the extension.
| Name | Description |
|---|---|
| s | SSL connection that received the extension. |
| data | Extension data bytes. |
| len | Length of data in bytes. |
| arg | Application pointer supplied when the callback was registered. |