Apache 2.0 STATUS:
-Last modified at [$Date: 2000/04/17 19:17:20 $]
+Last modified at [$Date: 2000/04/18 00:08:29 $]
Release:
be moved out of the MPMs and into some common file (http_core.c?).
Dean says presumably you mean an os-specific file?
- * Pipes to CGI scripts are not being timed out
- Status: code has been added to APR to support timing out pipes.
- This needs to be used in Apache now.
-
* Put back resource limit code
* suEXEC doesn't work
return APR_EBADF;
*script_in = ap_bcreate(p, B_RD);
ap_bpush_iol(*script_in, iol);
+ ap_bsetopt(*script_in, BO_TIMEOUT, &r->server->timeout);
/* Fill in BUFF structure for parents pipe to child's stdin */
ap_get_childin(&file, procnew);
return APR_EBADF;
*script_out = ap_bcreate(p, B_WR);
ap_bpush_iol(*script_out, iol);
+ ap_bsetopt(*script_out, BO_TIMEOUT, &r->server->timeout);
/* Fill in BUFF structure for parents pipe to child's stderr */
ap_get_childerr(&file, procnew);
return APR_EBADF;
*script_err = ap_bcreate(p, B_RD);
ap_bpush_iol(*script_err, iol);
+ ap_bsetopt(*script_err, BO_TIMEOUT, &r->server->timeout);
}
}
ap_unblock_alarms();