summaryrefslogtreecommitdiff
path: root/content/fetch.h
diff options
context:
space:
mode:
authorJames Bursa <james@netsurf-browser.org>2008-05-30 04:11:16 +0000
committerJames Bursa <james@netsurf-browser.org>2008-05-30 04:11:16 +0000
commitae992eab4d58f35465976ddb7603f37573370b84 (patch)
tree28e0f0b072554d638c0ac2617e6dc55a9d193b74 /content/fetch.h
parenta76164ab518dbdd7f755961b7f06f37777b487b6 (diff)
downloadnetsurf-ae992eab4d58f35465976ddb7603f37573370b84.tar.gz
netsurf-ae992eab4d58f35465976ddb7603f37573370b84.tar.bz2
Add new fetch callback FETCH_HEADER for headers and move as much header parsing as possible from fetch_curl.c to fetchcache.c. This simplifies fetch_curl.c and will make it possible to store response headers in future.
svn path=/trunk/netsurf/; revision=4226
Diffstat (limited to 'content/fetch.h')
-rw-r--r--content/fetch.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/content/fetch.h b/content/fetch.h
index da846c607..4306e65da 100644
--- a/content/fetch.h
+++ b/content/fetch.h
@@ -30,6 +30,7 @@
typedef enum {
FETCH_TYPE,
FETCH_PROGRESS,
+ FETCH_HEADER,
FETCH_DATA,
FETCH_FINISHED,
FETCH_ERROR,