You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by br...@apache.org on 2005/10/10 00:54:46 UTC

svn commit: r312512 - /httpd/httpd/branches/async-dev/server/mpm/experimental/event/event.c

Author: brianp
Date: Sun Oct  9 15:54:44 2005
New Revision: 312512

URL: http://svn.apache.org/viewcvs?rev=312512&view=rev
Log:
Fixed processing of pipelined requests

Modified:
    httpd/httpd/branches/async-dev/server/mpm/experimental/event/event.c

Modified: httpd/httpd/branches/async-dev/server/mpm/experimental/event/event.c
URL: http://svn.apache.org/viewcvs/httpd/httpd/branches/async-dev/server/mpm/experimental/event/event.c?rev=312512&r1=312511&r2=312512&view=diff
==============================================================================
--- httpd/httpd/branches/async-dev/server/mpm/experimental/event/event.c (original)
+++ httpd/httpd/branches/async-dev/server/mpm/experimental/event/event.c Sun Oct  9 15:54:44 2005
@@ -623,6 +623,7 @@
         c->sbh = sbh;
     }
 
+read_request:
     if (cs->state == CONN_STATE_READ_REQUEST_LINE) {
         if (!c->aborted) {
             ap_run_process_connection(c);
@@ -664,6 +665,7 @@
         }
         else if (c->data_in_input_filters) {
             cs->state = CONN_STATE_READ_REQUEST_LINE;
+            goto read_request;
         }
         else {
             cs->state = CONN_STATE_CHECK_REQUEST_LINE_READABLE;