would never answer the browser if cgi threw

This commit is contained in:
Adam D. Ruppe 2012-02-05 18:21:11 -05:00
parent 23da5a5bf4
commit 5b38267e09
1 changed files with 6 additions and 0 deletions

View File

@ -78,6 +78,8 @@ class HttpdConnection(CustomCgi) : Connection /* if(is(CustomCgi : Cgi)) */ {
state = 0;
separator = "\r\n";
// writeln("FINISHED");
scope(exit) {
if(closeConnection)
disconnect();
@ -106,6 +108,8 @@ class HttpdConnection(CustomCgi) : Connection /* if(is(CustomCgi : Cgi)) */ {
} catch(Throwable e) {
cgi.setResponseStatus("500 Internal Server Error");
cgi.write(e.toString());
cgi.close();
cgi.dispose();
return;
}
@ -114,6 +118,8 @@ class HttpdConnection(CustomCgi) : Connection /* if(is(CustomCgi : Cgi)) */ {
override void onDataReceived(){
auto a = read();
// writeln("data received ", state, "\n", cast(string) a);
more:
switch(state) {
default: assert(0);