[#SSL_CTX_set_client_CA_list] = SSL_CTX_set_client_CA_list :mrdocs: Set the list of CA names sent to clients when requesting a client certificate. == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void SSL_CTX_set_client_CA_list( xref:SSL_CTX.adoc[SSL_CTX]* ctx, xref:stack_st_X509_NAME.adoc[stack_st_X509_NAME]* name_list); ---- == Parameters [cols="1,4"] |=== | Name| Description | *ctx* | SSL context (typically a server) that owns `name_list` after this call. | *name_list* | Stack of X509_NAME objects identifying acceptable CAs; ownership transfers to `ctx.` |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#