From 6807fa854da64166e84efd0074b1e4dfeb5d8b17 Mon Sep 17 00:00:00 2001 From: John Mark Bell Date: Sun, 4 Sep 2011 06:28:09 +0000 Subject: Sniff content types where appropriate. We never sniff for CSS, nor for non-page artefacts (e.g. treeview icons) svn path=/trunk/netsurf/; revision=12707 --- content/llcache.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'content/llcache.h') diff --git a/content/llcache.h b/content/llcache.h index 215e6cc1a..e6584e165 100644 --- a/content/llcache.h +++ b/content/llcache.h @@ -89,12 +89,10 @@ enum llcache_retrieve_flag { LLCACHE_RETRIEVE_FORCE_FETCH = (1 << 0), /** Requested URL was verified */ LLCACHE_RETRIEVE_VERIFIABLE = (1 << 1), - /** Permit content-type sniffing */ - LLCACHE_RETRIEVE_SNIFF_TYPE = (1 << 2), /**< No error pages */ - LLCACHE_RETRIEVE_NO_ERROR_PAGES = (1 << 3), + LLCACHE_RETRIEVE_NO_ERROR_PAGES = (1 << 2), /**< Stream data (implies that object is not cacheable) */ - LLCACHE_RETRIEVE_STREAM_DATA = (1 << 4) + LLCACHE_RETRIEVE_STREAM_DATA = (1 << 3) }; /** Low-level cache query types */ -- cgit v1.2.3