diff --git a/sslsocket.d b/sslsocket.d index 7b2c4d0..e51778e 100644 --- a/sslsocket.d +++ b/sslsocket.d @@ -50,6 +50,11 @@ class OpenSslSocket : Socket { super(sock, af); initSsl(); } + + ~this() { + SSL_free(ssl); + SSL_CTX_free(ctx); + } } version(ssl_test)