SSL_freeSection: OpenSSL (3)Updated: 2001-02-13 |
SSL_freeSection: OpenSSL (3)Updated: 2001-02-13 |
#include <openssl/ssl.h>
void SSL_free(SSL *ssl);
The ssl session has reference counts from two users: the SSL object, for which the reference count is removed by SSL_free() and the internal session cache. If the session is considered bad, because SSL_shutdown(3) was not called for the connection and SSL_set_shutdown(3) was not used to set the SSL_SENT_SHUTDOWN state, the session will also be removed from the session cache as required by RFC2246.
SSL_new(3), SSL_clear(3), SSL_shutdown(3), SSL_set_shutdown(3), ssl(3)