summaryrefslogtreecommitdiff
path: root/content/fetch.c
diff options
context:
space:
mode:
authorDaniel Silverstone <dsilvers@netsurf-browser.org>2007-01-02 13:07:28 +0000
committerDaniel Silverstone <dsilvers@netsurf-browser.org>2007-01-02 13:07:28 +0000
commitcf0718f6490f01f1c4a3f0c90caf69c738c1c33d (patch)
treeddbf29751f7ae927c3019fe5a7a24e4017c5c5d4 /content/fetch.c
parent8b7d6e67f9571f702ead52d4abc18dd268bdce37 (diff)
downloadnetsurf-cf0718f6490f01f1c4a3f0c90caf69c738c1c33d.tar.gz
netsurf-cf0718f6490f01f1c4a3f0c90caf69c738c1c33d.tar.bz2
Update the file comment for fetch.c as requested.
svn path=/trunk/netsurf/; revision=3133
Diffstat (limited to 'content/fetch.c')
-rw-r--r--content/fetch.c8
1 files changed, 5 insertions, 3 deletions
diff --git a/content/fetch.c b/content/fetch.c
index 7fb082f02..cbff20644 100644
--- a/content/fetch.c
+++ b/content/fetch.c
@@ -12,9 +12,11 @@
*
* This implementation uses libcurl's 'multi' interface.
*
- * Active fetches are held in the linked list fetch_list. There may be at most
- * one fetch in progress from each host. Any further fetches are queued until
- * the previous one ends.
+ * Active fetches are held in the circular linked list ::fetch_ring. There may
+ * be at most ::option_max_fetchers_per_host active requests per Host: header.
+ * There may be at most ::option_max_fetchers active requests overall. Inactive
+ * fetchers are stored in the ::queue_ring and there are at most
+ * ::option_max_cached_fetch_handles kept in there at any one time.
*/
#include <assert.h>