[#SSL_CTX_set0_CA_list] = SSL_CTX_set0_CA_list :mrdocs: Set the list of CA names sent to the peer for an SSL context (takes ownership). == Synopsis Declared in `<openssl/ssl.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void SSL_CTX_set0_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 whose certificate_authorities / CA list is replaced. | *name_list* | Stack of X509_NAME subjects; ownership transfers to `ctx` (do not free). |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#