Handle EINTR in mod_cgi during write() (#1640)
git-svn-id: svn://svn.lighttpd.net/lighttpd/branches/lighttpd-1.4.x@2153 152afb58-edef-0310-8abb-c4023f1b3aa9
This commit is contained in:
parent
4bf89c62b6
commit
8dd78e06c7
1
NEWS
1
NEWS
|
@ -18,6 +18,7 @@ NEWS
|
|||
* Fix accesslog port (should be port from the connection, not the "server.port") (#1618)
|
||||
* Fix mod_fastcgi prefix matching: match the prefix always against url, not the absolute filepath (regardless of check-local)
|
||||
* Overwrite Content-Type header in mod_dirlisting instead of inserting (#1614), patch by Henrik Holst
|
||||
* Handle EINTR in mod_cgi during write() (#1640)
|
||||
|
||||
- 1.4.19 - 2008-03-10
|
||||
|
||||
|
|
|
@ -1058,8 +1058,9 @@ static int cgi_create_env(server *srv, connection *con, plugin_data *p, buffer *
|
|||
switch(errno) {
|
||||
case ENOSPC:
|
||||
con->http_status = 507;
|
||||
|
||||
break;
|
||||
case EINTR:
|
||||
continue;
|
||||
default:
|
||||
con->http_status = 403;
|
||||
break;
|
||||
|
@ -1071,8 +1072,9 @@ static int cgi_create_env(server *srv, connection *con, plugin_data *p, buffer *
|
|||
switch(errno) {
|
||||
case ENOSPC:
|
||||
con->http_status = 507;
|
||||
|
||||
break;
|
||||
case EINTR:
|
||||
continue;
|
||||
default:
|
||||
con->http_status = 403;
|
||||
break;
|
||||
|
@ -1087,6 +1089,8 @@ static int cgi_create_env(server *srv, connection *con, plugin_data *p, buffer *
|
|||
c->offset += r;
|
||||
cq->bytes_out += r;
|
||||
} else {
|
||||
log_error_write(srv, __FILE__, __LINE__, "ss", "write() failed due to: ", strerror(errno));
|
||||
con->http_status = 500;
|
||||
break;
|
||||
}
|
||||
chunkqueue_remove_finished_chunks(cq);
|
||||
|
|
Loading…
Reference in New Issue