diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-27 01:47:36 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2010-03-27 01:47:36 +0000 |
commit | 161325ac4fffd1c54b0dc267b2352f765dfbd52d (patch) | |
tree | 984011d6cc209df3aa992f4797252159c546ebfe /package/uhttpd/src/uhttpd-cgi.c | |
parent | 8c9b818a24045c15f40fc415cd1dde78c438555a (diff) | |
download | upstream-161325ac4fffd1c54b0dc267b2352f765dfbd52d.tar.gz upstream-161325ac4fffd1c54b0dc267b2352f765dfbd52d.tar.bz2 upstream-161325ac4fffd1c54b0dc267b2352f765dfbd52d.zip |
uhttpd: clear script timeout as soon as data is received from the child
SVN-Revision: 20501
Diffstat (limited to 'package/uhttpd/src/uhttpd-cgi.c')
-rw-r--r-- | package/uhttpd/src/uhttpd-cgi.c | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/package/uhttpd/src/uhttpd-cgi.c b/package/uhttpd/src/uhttpd-cgi.c index 4a30f2fc9a..8bd22503de 100644 --- a/package/uhttpd/src/uhttpd-cgi.c +++ b/package/uhttpd/src/uhttpd-cgi.c @@ -360,6 +360,9 @@ void uh_cgi_request(struct client *cl, struct http_request *req, struct path_inf memset(hdr, 0, sizeof(hdr)); + timeout.tv_sec = cl->server->conf->script_timeout; + timeout.tv_usec = 0; + #define ensure(x) \ do { if( x < 0 ) goto out; } while(0) @@ -372,12 +375,11 @@ void uh_cgi_request(struct client *cl, struct http_request *req, struct path_inf FD_SET(rfd[0], &reader); FD_SET(wfd[1], &writer); - timeout.tv_sec = cl->server->conf->script_timeout; - timeout.tv_usec = 0; - /* wait until we can read or write or both */ - if( select(fd_max, &reader, (content_length > -1) ? &writer : NULL, NULL, &timeout) > 0 ) - { + if( select(fd_max, &reader, + (content_length > -1) ? &writer : NULL, NULL, + (header_sent < 1) ? &timeout : NULL) > 0 + ) { /* ready to write to cgi program */ if( FD_ISSET(wfd[1], &writer) ) { |