Garrett Rooney wrote:
I wasy playing around with the FastCGI stuff tonight, and I
implemented the next step in the request process, sending the
environment over to the backend fcgi process.  This also involved
refactoring some of the existing code a bit, removing unused
variables, etc, but nothing too extraordinary.  Some basic testing
with a Ruby fastcgi script shows the environment getting parsed by the
script just fine.

Log message follows, patch is attached.

Thanks, committed in r359043. Few small cleanups, you did a couple double spaces, and subversion style things.... Also tried to explain what a request ID means in FastCGI terms:

    /* Request IDs are arbitrary numbers that we assign to a
     * single request. This would allow multiplex/pipelinig of
     * multiple requests to the same FastCGI connection, but
     * we don't support that, and always use a value of '1' to
     * keep things simple. */

-Paul

Reply via email to