summaryrefslogtreecommitdiff
path: root/content/fetchcache.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2007-01-27 20:58:20 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2007-01-27 20:58:20 +0000
commitdf4dbaf4cfebf0b8b5ec9ae7d0bf6ae467609a4e (patch)
tree8668484e194b0f7cb6fbc169f04e0cae2d85374a /content/fetchcache.h
parentcd98970628e9cfcea702df8038ed653a8d1ea6a2 (diff)
downloadnetsurf-df4dbaf4cfebf0b8b5ec9ae7d0bf6ae467609a4e.tar.gz
netsurf-df4dbaf4cfebf0b8b5ec9ae7d0bf6ae467609a4e.tar.bz2
Handle cookies in unverifiable transactions
svn path=/trunk/netsurf/; revision=3151
Diffstat (limited to 'content/fetchcache.h')
-rw-r--r--content/fetchcache.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/content/fetchcache.h b/content/fetchcache.h
index 76537cd93..43a6649fe 100644
--- a/content/fetchcache.h
+++ b/content/fetchcache.h
@@ -30,15 +30,15 @@ struct content * fetchcache(const char *url,
bool no_error_pages,
char *post_urlenc,
struct form_successful_control *post_multipart,
- bool cookies,
+ bool verifiable,
bool download);
-void fetchcache_go(struct content *content, char *referer,
+void fetchcache_go(struct content *content, const char *referer,
void (*callback)(content_msg msg, struct content *c,
intptr_t p1, intptr_t p2, union content_msg_data data),
intptr_t p1, intptr_t p2,
int width, int height,
char *post_urlenc,
struct form_successful_control *post_multipart,
- bool cookies);
+ bool verifiable);
#endif