SSL_dup_CA_list(3) — Subroutines
NAME
SSL_dup_CA_list − Duplicate the list of CAs
SYNOPSIS
#include <openssl/ssl.h>
STACK_OF(X509_NAME) ∗SSL_dup_CA_list(
STACK_OF(X509_NAME) ∗sk );
DESCRIPTION
The SSL_dup_CA_list() function duplicates the specified list of CAs and return an address of the newly created list of CAs.
RETURN VALUES
The SSL_dup_CA_list() function returns the following values:
STACK_OF(X509_NAMES)
List of CA names copied from the specified list of CA names.
NULLThis function failed to duplicate a list of CAs.
SEE ALSO
Functions: SSL_dup(3)