Commit db778cc4 authored by Brian Pane's avatar Brian Pane
Browse files

Fixed processing of pipelined requests

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/branches/async-dev@312512 13f79535-47bb-0310-9956-ffa450edef68
parent 485bc897
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -623,6 +623,7 @@ static int process_socket(apr_pool_t * p, apr_socket_t * sock,
        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 @@ static int process_socket(apr_pool_t * p, apr_socket_t * sock,
        }
        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;