added trusted attributes to compile under latest version

This commit is contained in:
Chloride Cull 2014-08-24 16:42:19 +02:00
parent 6518f912bc
commit 2e5245d016
1 changed files with 4 additions and 1 deletions

View File

@ -25,18 +25,21 @@ class OpenSslSocket : Socket {
SSL_set_fd(ssl, this.handle);
}
@trusted
override void connect(Address to) {
super.connect(to);
if(SSL_connect(ssl) == -1)
throw new Exception("ssl connect");
}
@trusted
override ptrdiff_t send(const(void)[] buf, SocketFlags flags) {
return SSL_write(ssl, buf.ptr, cast(uint) buf.length);
}
override ptrdiff_t send(const(void)[] buf) {
return send(buf, SocketFlags.NONE);
}
@trusted
override ptrdiff_t receive(void[] buf, SocketFlags flags) {
return SSL_read(ssl, buf.ptr, buf.length);
}