diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-09-08 12:15:09 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-09-08 12:15:09 +0000 |
commit | 2816902f0e91073887a0f746eae70edb75d9ea43 (patch) | |
tree | c0629517dadf580d8697b9384bce44f8f4ff8301 /lib | |
parent | f72a26d340fb675e03d21d7a86dbb5803cd18831 (diff) |
Dmitry Kurochkin fixed pipelining over proxy using the multi interface
Diffstat (limited to 'lib')
-rw-r--r-- | lib/multi.c | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/lib/multi.c b/lib/multi.c index f8602e1d6..70ea38120 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -1988,11 +1988,13 @@ static int checkPendPipeline(struct connectdata *conn) int result = 0; struct curl_llist_element *sendhead = conn->send_pipe->head; - if (conn->server_supports_pipelining) { - size_t pipeLen = conn->send_pipe->size + conn->recv_pipe->size; + size_t pipeLen = conn->send_pipe->size + conn->recv_pipe->size; + if (conn->server_supports_pipelining || pipeLen == 0) { struct curl_llist_element *curr = conn->pend_pipe->head; + const size_t maxPipeLen = + conn->server_supports_pipelining ? MAX_PIPELINE_LENGTH : 1; - while(pipeLen < MAX_PIPELINE_LENGTH && curr) { + while(pipeLen < maxPipeLen && curr) { Curl_llist_move(conn->pend_pipe, curr, conn->send_pipe, conn->send_pipe->tail); Curl_pgrsTime(curr->ptr, TIMER_PRETRANSFER); @@ -2000,11 +2002,10 @@ static int checkPendPipeline(struct connectdata *conn) curr = conn->pend_pipe->head; ++pipeLen; } - if (result > 0) - conn->now = Curl_tvnow(); } - if(result) { + if (result) { + conn->now = Curl_tvnow(); /* something moved, check for a new send pipeline leader */ if(sendhead != conn->send_pipe->head) { /* this is a new one as head, expire it */ |