From b3de497d8316647d988e97703f975e0acd40cacd Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Wed, 16 Jan 2008 12:24:00 +0000 Subject: Dmitry Kurochkin worked a lot on improving the HTTP Pipelining support that previously had a number of flaws, perhaps most notably when an application fired up N transfers at once as then they wouldn't pipeline at all that nicely as anyone would think... Test case 530 was also updated to take the improved functionality into account. --- lib/url.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'lib/url.h') diff --git a/lib/url.h b/lib/url.h index e4f72eb7a..e38138f91 100644 --- a/lib/url.h +++ b/lib/url.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2007, Daniel Stenberg, , et al. + * Copyright (C) 1998 - 2008, Daniel Stenberg, , et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -64,12 +64,11 @@ int Curl_doing_getsock(struct connectdata *conn, curl_socket_t *socks, int numsocks); +bool Curl_isPipeliningEnabled(const struct SessionHandle *handle); CURLcode Curl_addHandleToPipeline(struct SessionHandle *handle, struct curl_llist *pipeline); int Curl_removeHandleFromPipeline(struct SessionHandle *handle, struct curl_llist *pipeline); -bool Curl_isHandleAtHead(struct SessionHandle *handle, - struct curl_llist *pipeline); void Curl_close_connections(struct SessionHandle *data); -- cgit v1.2.3