mirror of https://github.com/adamdruppe/arsd.git
openssl Socket subclass cleanup
This commit is contained in:
parent
4a79d90de6
commit
94c474597d
|
@ -50,6 +50,11 @@ class OpenSslSocket : Socket {
|
|||
super(sock, af);
|
||||
initSsl();
|
||||
}
|
||||
|
||||
~this() {
|
||||
SSL_free(ssl);
|
||||
SSL_CTX_free(ctx);
|
||||
}
|
||||
}
|
||||
|
||||
version(ssl_test)
|
||||
|
|
Loading…
Reference in New Issue