diff options
author | Daniel Stenberg <daniel@haxx.se> | 2008-01-16 12:24:00 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2008-01-16 12:24:00 +0000 |
commit | b3de497d8316647d988e97703f975e0acd40cacd (patch) | |
tree | 74b86d8d957d3c1481d049cfb73201b62d6161c4 /lib/llist.h | |
parent | ed6466d17603aa39bb4b1685544747f4c64ec7b0 (diff) | |
download | curl-b3de497d8316647d988e97703f975e0acd40cacd.tar.gz |
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.
Diffstat (limited to 'lib/llist.h')
-rw-r--r-- | lib/llist.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/llist.h b/lib/llist.h index 5c7a8a008..bf013898c 100644 --- a/lib/llist.h +++ b/lib/llist.h @@ -7,7 +7,7 @@ * | (__| |_| | _ <| |___ * \___|\___/|_| \_\_____| * - * Copyright (C) 1998 - 2005, Daniel Stenberg, <daniel@haxx.se>, et al. + * Copyright (C) 1998 - 2008, Daniel Stenberg, <daniel@haxx.se>, et al. * * This software is licensed as described in the file COPYING, which * you should have received as part of this distribution. The terms @@ -56,5 +56,7 @@ int Curl_llist_remove_next(struct curl_llist *, struct curl_llist_element *, void *); size_t Curl_llist_count(struct curl_llist *); void Curl_llist_destroy(struct curl_llist *, void *); +int Curl_llist_move(struct curl_llist *, struct curl_llist_element *, + struct curl_llist *, struct curl_llist_element *); #endif |