summaryrefslogtreecommitdiff
path: root/libsoup/soup.h
diff options
context:
space:
mode:
authorDan Winship <danw@src.gnome.org>2008-11-04 20:30:37 +0000
committerDan Winship <danw@src.gnome.org>2008-11-04 20:30:37 +0000
commitae786f44ace1712be2b3899806202591cf074905 (patch)
tree4bd9e83b29db66f98908fb24e54518dd53a27a06 /libsoup/soup.h
parent07279b0c7e1eb3c931c1ae201574a58609e0f6bc (diff)
downloadlibsoup-ae786f44ace1712be2b3899806202591cf074905.tar.gz
implementation of SoupCookieJar that persists to a text file in the old
* libsoup/soup-cookie-jar-text.c: implementation of SoupCookieJar that persists to a text file in the old Mozilla cookies.txt format. * libsoup/soup-cookie-jar-sqlite.c: implementation of SoupCookieJar that persists to an sqlite database in the new Mozilla cookies.sqlite format. (Part of libsoup-gnome.) * libsoup/soup-cookie-jar.c: add various functionality needed by the two new subclasses. Does not break API/ABI compat with 2.24. * libsoup/soup-cookie.c (soup_cookie_get_type): register SoupCookie as a boxed type. (domain_matches): fix a bug here that meant "foo.com" couldn't set a cookie for domain=.foo.com (soup_cookie_applies_to_uri): fix path checking * configure.in: if building --with-gnome, require sqlite3 svn path=/trunk/; revision=1200
Diffstat (limited to 'libsoup/soup.h')
-rw-r--r--libsoup/soup.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/libsoup/soup.h b/libsoup/soup.h
index afb48921..e973fe8e 100644
--- a/libsoup/soup.h
+++ b/libsoup/soup.h
@@ -17,6 +17,7 @@ extern "C" {
#include <libsoup/soup-auth-domain-digest.h>
#include <libsoup/soup-cookie.h>
#include <libsoup/soup-cookie-jar.h>
+#include <libsoup/soup-cookie-jar-text.h>
#include <libsoup/soup-date.h>
#include <libsoup/soup-enum-types.h>
#include <libsoup/soup-form.h>