SSL_CTX_free - Free an allocated SSL_CTX object
#include <openssl/ssl.h>
void SSL_CTX_free(
SSL_CTX *ctx );
The SSL_CTX_free() function decrements the reference count
of ctx, and removes the SSL_CTX object pointed to by ctx
and frees up the allocated memory if the the reference
count has reached 0.
If applicable, it also calls the freeing procedures for
indirectly affected items: the session cache, the list of
ciphers, the list of Client CAs, the certificates and
keys.
The SSL_CTX_free() function does not provide diagnostic
information.
Functions: SSL_CTX_new(3), ssl(3)
SSL_CTX_free(3)
[ Back ] |