openssl Socket subclass cleanup

This commit is contained in:
Adam D. Ruppe 2013-11-09 16:22:52 -05:00
parent 4a79d90de6
commit 94c474597d
1 changed files with 5 additions and 0 deletions

View File

@ -50,6 +50,11 @@ class OpenSslSocket : Socket {
super(sock, af); super(sock, af);
initSsl(); initSsl();
} }
~this() {
SSL_free(ssl);
SSL_CTX_free(ctx);
}
} }
version(ssl_test) version(ssl_test)