64 bit compatability

TcpSocket.recv returns size_t and SSL_write takes int not size_t
This commit is contained in:
David 2012-08-22 23:27:29 +03:00
parent 7765214a7f
commit 199fe4aaec
1 changed files with 2 additions and 2 deletions

4
http.d
View File

@ -116,7 +116,7 @@ HttpResponse httpRequest(string method, string uri, const(ubyte)[] content = nul
char[4096] readBuffer; // rawRead actually blocks until it can fill up the whole buffer... which is broken as far as http goes so one char at a time i guess. slow lol
char[] delegate() read = () {
int num = f.receive(readBuffer);
size_t num = f.receive(readBuffer);
return readBuffer[0..num];
};
@ -142,7 +142,7 @@ HttpResponse httpRequest(string method, string uri, const(ubyte)[] content = nul
sslAssert(SSL_connect(ssl) != -1);
write = (string d) {
SSL_write(ssl, d.ptr, d.length);
SSL_write(ssl, d.ptr, cast(uint)d.length);
};
read = () {