[#SSL_CTX_set_async_callback_arg] = SSL_CTX_set_async_callback_arg :mrdocs: Set the user argument passed to the context's asynchronous completion callback. == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- int SSL_CTX_set_async_callback_arg( xref:SSL_CTX.adoc[SSL_CTX]* ctx, void* arg); ---- == Return Value 1 on success, or 0 on failure. == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | SSL context whose async callback receives `arg.` | *arg* | Pointer forwarded to the async callback when a crypto operation completes. |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#