 |
Index for Section 3 |
|
 |
Alphabetical listing for S |
|
 |
Bottom of page |
|
SSL_CTX_free(3)
NAME
SSL_CTX_free - Free an allocated SSL_CTX object
SYNOPSIS
#include <openssl/ssl.h>
void SSL_CTX_free(
SSL_CTX *ctx );
DESCRIPTION
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.
RETURN VALUES
The SSL_CTX_free() function does not provide diagnostic information.
SEE ALSO
Functions: SSL_CTX_new(3), ssl(3)
 |
Index for Section 3 |
|
 |
Alphabetical listing for S |
|
 |
Top of page |
|