summaryrefslogtreecommitdiff
path: root/lib/llist.c
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2006-09-07 21:49:20 +0000
committerDaniel Stenberg <daniel@haxx.se>2006-09-07 21:49:20 +0000
commitb7eeb6e67fca686f840eacd6b8394edb58b07482 (patch)
treecdcd4b0d54bcad40a57ef409d2594cca7d4d07d4 /lib/llist.c
parent7e4193b538a517eb27e4cb5b2b7973bae967add8 (diff)
downloadcurl-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.c6
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;
+}