summaryrefslogtreecommitdiff
path: root/utils/utils.h
diff options
context:
space:
mode:
authorJohn Mark Bell <jmb@netsurf-browser.org>2003-12-28 02:35:46 +0000
committerJohn Mark Bell <jmb@netsurf-browser.org>2003-12-28 02:35:46 +0000
commitb0b2ec850f74d3dd8bd2fffa76fbd2af20b42705 (patch)
tree5edf5a114b68394c737318f1b04e6dfd4789fef6 /utils/utils.h
parent7e7b70e1713590f39b0d3891bcdef6584901b2ab (diff)
downloadnetsurf-b0b2ec850f74d3dd8bd2fffa76fbd2af20b42705.tar.gz
netsurf-b0b2ec850f74d3dd8bd2fffa76fbd2af20b42705.tar.bz2
[project @ 2003-12-28 02:35:46 by jmb]
Remove expired cookies from the cookiejar. Cookies are removed every time a window is closed and when NetSurf is quit. /me slaps libcurl for not doing it itself. Make cookie_create() read the cookie jar location from the messages file. svn path=/import/netsurf/; revision=463
Diffstat (limited to 'utils/utils.h')
-rw-r--r--utils/utils.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/utils/utils.h b/utils/utils.h
index e3a210352..4feeb34a3 100644
--- a/utils/utils.h
+++ b/utils/utils.h
@@ -30,5 +30,6 @@ char *url_join(char *rel_url, char *base_url);
char *get_host_from_url(char* url);
bool is_dir(const char *path);
void regcomp_wrapper(regex_t *preg, const char *regex, int cflags);
+void clean_cookiejar(void);
#endif