Added warning for abuse of CGI return code

pull/30/head
Jeroen Domburg 9 years ago
parent 49c7d310bc
commit 5fb984e13b
  1. 4
      user/httpd.c

@ -279,6 +279,10 @@ static void ICACHE_FLASH_ATTR httpdSentCb(void *arg) {
if (r==HTTPD_CGI_DONE) {
conn->cgi=NULL; //mark for destruction.
}
if (r==HTTPD_CGI_NOTFOUND || HTTPD_CGI_AUTHENTICATED) {
os_printf("ERROR! CGI fn returns code %d after sending data! Bad CGI!\n", r);
conn->cgi=NULL; //mark for destruction.
}
xmitSendBuff(conn);
}

Loading…
Cancel
Save