diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-09-07 21:49:20 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-09-07 21:49:20 +0000 |
commit | b7eeb6e67fca686f840eacd6b8394edb58b07482 (patch) | |
tree | cdcd4b0d54bcad40a57ef409d2594cca7d4d07d4 /lib/llist.c | |
parent | 7e4193b538a517eb27e4cb5b2b7973bae967add8 (diff) | |
download | curl-b7eeb6e67fca686f840eacd6b8394edb58b07482.tar.gz |
Major overhaul introducing http pipelining support and shared connection
cache within the multi handle.
Diffstat (limited to 'lib/llist.c')
-rw-r--r-- | lib/llist.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib/llist.c b/lib/llist.c index ae5a466c6..0caa25ad6 100644 --- a/lib/llist.c +++ b/lib/llist.c @@ -130,3 +130,9 @@ Curl_llist_destroy(struct curl_llist *list, void *user) free(list); } } + +size_t +Curl_llist_count(struct curl_llist *list) +{ + return list->size; +} |