Release SSL_CTX and the associated data. This works for both client and server contexts and gracefully accepts nullptr.
| 2000 | // Release SSL_CTX and the associated data. This works for both |
| 2001 | // client and server contexts and gracefully accepts nullptr. |
| 2002 | void |
| 2003 | SSLReleaseContext(SSL_CTX *ctx) |
| 2004 | { |
| 2005 | SSL_CTX_free(ctx); |
| 2006 | } |
| 2007 | |
| 2008 | void |
| 2009 | SSLNetVCAttach(SSL *ssl, SSLNetVConnection *vc) |
no outgoing calls
no test coverage detected