Home | History | Annotate | Download | only in ssl

Lines Matching full:client_ca

611 	if (s->client_CA != NULL)
612 sk_X509_NAME_pop_free(s->client_CA,X509_NAME_free);
1961 if ((ret->client_CA=sk_X509_NAME_new_null()) == NULL)
2115 if (a->client_CA != NULL)
2116 sk_X509_NAME_pop_free(a->client_CA,X509_NAME_free);
2951 /* Dup the client_CA list */
2952 if (s->client_CA != NULL)
2954 if ((sk=sk_X509_NAME_dup(s->client_CA)) == NULL) goto err;
2955 ret->client_CA=sk;