gtpc1m5l | Transmission Control Protocol/Internet Protocol |
The SSL_CTX_set_client_CA_list function identifies the list of certificate authorities (CAs) that will be sent to the remote client application when requesting the client certificate for any Secure Sockets Layer (SSL) session associated with a specific context (CTX) structure. The client application must provide a certificate that was signed by one of the CAs in the list.
Format
#include <openssl/ssl.h> void SSL_CTX_set_client_CA_list(SSL_CTX *ctx,STACK_OF(X509_NAME) *list)
Normal Return
None.
Error Return
None.
Programming Considerations
Examples
For sample SSL applications, go to http://www.ibm.com/tpf/pubs/tpfpubs.htm, click SSL for the TPF 4.1 System: An Online User's Guide, and click Examples from the left navigation bar.
Related Information