[PATCH] mod_proxy_fcgi - add support for reading stdout from fcgi process

2005-12-27 Thread Garrett Rooney
This patch makes the code for talking to the back end fastcgi process use apr_poll, interleaving reads and writes as they become ready. Note that it doesn't actually switch to nonblocking reads/writes, but that can be done in another pass. This also switches to AP_IOBUFSIZE for the read/write

Re: [PATCH] mod_proxy_fcgi - add support for reading stdout from fcgi process

2005-12-27 Thread Garrett Rooney
On 12/27/05, Garrett Rooney [EMAIL PROTECTED] wrote: Comments, as always, are more than welcome. As Paul pointed out on IRC, this patch fails to parse the HTTP headers coming back from the back end fastcgi process. Here's an updated version that fixes that. Log follows, patch attached.

Re: [PATCH] mod_proxy_fcgi - add support for reading stdout from fcgi process

2005-12-27 Thread Garrett Rooney
On 12/27/05, Garrett Rooney [EMAIL PROTECTED] wrote: On 12/27/05, Garrett Rooney [EMAIL PROTECTED] wrote: Comments, as always, are more than welcome. As Paul pointed out on IRC, this patch fails to parse the HTTP headers coming back from the back end fastcgi process. Here's an updated