[#SSL_SESSION_get_ex_data] = SSL_SESSION_get_ex_data :mrdocs: Retrieve application data previously stored on an SSL_SESSION. == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void* SSL_SESSION_get_ex_data( xref:SSL_SESSION.adoc[SSL_SESSION] const* ss, int idx); ---- == Return Value Stored pointer, or NULL if unset. == Parameters [cols="1,4"] |=== | Name| Description | *ss* | Session to query. | *idx* | Index from CRYPTO_get_ex_new_index() / SSL_SESSION_get_ex_new_index(). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#