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