mirror of
https://github.com/apache/httpd.git
synced 2025-08-20 16:09:55 +00:00
Add a test program for pipes. Add support for non-buffered CGI's to mod_cgi.
This still doesn't terminate CGI's after a time limit, that's the next step. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84687 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@ -331,9 +331,9 @@ static ap_status_t run_cgi_child(BUFF **script_out, BUFF **script_in, BUFF **scr
|
||||
*/
|
||||
if (((rc = ap_createprocattr_init(&procattr, p)) != APR_SUCCESS) ||
|
||||
((rc = ap_setprocattr_io(procattr,
|
||||
APR_FULL_BLOCK,
|
||||
APR_FULL_BLOCK,
|
||||
APR_FULL_BLOCK)) != APR_SUCCESS) ||
|
||||
APR_CHILD_BLOCK,
|
||||
APR_CHILD_BLOCK,
|
||||
APR_CHILD_BLOCK)) != APR_SUCCESS) ||
|
||||
((rc = ap_setprocattr_dir(procattr,
|
||||
ap_make_dirstr_parent(r->pool, r->filename))) != APR_SUCCESS) ||
|
||||
((rc = ap_setprocattr_cmdtype(procattr, APR_PROGRAM)) != APR_SUCCESS)) {
|
||||
|
Reference in New Issue
Block a user