diff options
author | corvid <corvid@lavabit.com> | 2010-04-06 02:27:54 +0000 |
---|---|---|
committer | corvid <corvid@lavabit.com> | 2010-04-06 02:27:54 +0000 |
commit | 6f3fa9135b34e14c5330cb563b136e915d91ecf9 (patch) | |
tree | c27e6bd8327c305e062e225ea1e5200c86425db6 /src/prefs.h | |
parent | d632e3c9d3a9fb6e3fd2dd7b28edca99012d7782 (diff) |
filter automatic requests
same_domain option in preference so that spying on users isn't so easy.
Diffstat (limited to 'src/prefs.h')
-rw-r--r-- | src/prefs.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/prefs.h b/src/prefs.h index 6015f2fe..684262ed 100644 --- a/src/prefs.h +++ b/src/prefs.h @@ -26,6 +26,9 @@ extern "C" { /* Panel sizes */ enum { P_tiny = 0, P_small, P_medium, P_large }; +enum {PREFS_FILTER_ALLOW_ALL, + PREFS_FILTER_SAME_DOMAIN}; + typedef struct _DilloPrefs DilloPrefs; struct _DilloPrefs { @@ -71,6 +74,7 @@ struct _DilloPrefs { bool_t load_images; bool_t load_stylesheets; bool_t parse_embedded_css; + int filter_auto_requests; int32_t buffered_drawing; char *font_serif; char *font_sans_serif; |