From 199fe4aaeccf40913a9447b430ccf7685b428d0a Mon Sep 17 00:00:00 2001 From: David Date: Wed, 22 Aug 2012 23:27:29 +0300 Subject: [PATCH] 64 bit compatability TcpSocket.recv returns size_t and SSL_write takes int not size_t --- http.d | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/http.d b/http.d index d32664e..a8ced9a 100644 --- a/http.d +++ b/http.d @@ -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 = () {