24#ifndef WOLFSSL_STACK_H_
25#define WOLFSSL_STACK_H_
31typedef void (*wolfSSL_sk_freefunc)(
void *);
33WOLFSSL_API
void wolfSSL_sk_GENERIC_pop_free(
WOLFSSL_STACK* sk, wolfSSL_sk_freefunc);
35WOLFSSL_API
int wolfSSL_sk_GENERIC_push(
WOLFSSL_STACK *sk,
void *data);
36WOLFSSL_API
void wolfSSL_sk_pop_free(
WOLFSSL_STACK *st,
void (*func) (
void *));
37WOLFSSL_API
void wolfSSL_sk_CONF_VALUE_free(
WOLF_STACK_OF(WOLFSSL_CONF_VALUE)* sk);
44#define OPENSSL_sk_free wolfSSL_sk_free
45#define OPENSSL_sk_pop_free wolfSSL_sk_pop_free
46#define OPENSSL_sk_new_null wolfSSL_sk_new_null
47#define OPENSSL_sk_push wolfSSL_sk_push
50#define sk_free OPENSSL_sk_free
51#define sk_pop_free OPENSSL_sk_pop_free
52#define sk_new_null OPENSSL_sk_new_null
53#define sk_push OPENSSL_sk_push
WOLFSSL_API WOLF_STACK_OF(WOLFSSL_X509) *wolfSSL_get_peer_cert_chain(const WOLFSSL *)
This function gets the peer’s certificate chain.
Definition ssl.c:16984
Definition internal.h:1833
Definition internal.h:3546