This commit is contained in:
Adam D. Ruppe 2012-03-25 00:11:44 -04:00
parent 933aa566d3
commit c826aad6e5
1 changed files with 2 additions and 1 deletions

3
cgi.d
View File

@ -1750,6 +1750,7 @@ mixin template CustomCgiMain(CustomCgi, alias fun, T...) if(is(CustomCgi : Cgi))
} catch(Throwable t) {
// a construction error is either bad code or bad request; bad request is what it should be since this is bug free :P
// anyway let's kill the connection
stderr.writeln(t.toString());
sendAll(connection, plainHttpError(false, "400 Bad Request", t));
closeConnection = true;
break;
@ -2227,7 +2228,7 @@ void sendAll(Socket s, const(void)[] data) {
do {
amount = s.send(data);
if(amount == Socket.ERROR)
throw new Exception("wtf in send");
throw new Exception("wtf in send: " ~ lastSocketError());
assert(amount > 0);
data = data[amount .. $];
} while(data.length);