[#SSL_SESSION_get0_ticket] = SSL_SESSION_get0_ticket :mrdocs: Obtain a pointer to the session ticket bytes stored on a session. == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void SSL_SESSION_get0_ticket( xref:SSL_SESSION.adoc[SSL_SESSION] const* s, unsigned char const** tick, size_t* len); ---- == Parameters [cols="1,4"] |=== | Name| Description | *s* | Session to query. | *tick* | Optional; when non‐NULL, set to a pointer to the ticket bytes inside `s` (valid while `s` is). | *len* | On return, set to the ticket length in bytes. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#