summaryrefslogtreecommitdiff
path: root/content/hlcache.h
diff options
context:
space:
mode:
Diffstat (limited to 'content/hlcache.h')
-rw-r--r--content/hlcache.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/content/hlcache.h b/content/hlcache.h
index 2372158e1..714fcce45 100644
--- a/content/hlcache.h
+++ b/content/hlcache.h
@@ -60,7 +60,9 @@ enum hlcache_retrieve_flag {
* To avoid confusion, high-level flags are allocated from bit 31 down.
*/
/** It's permitted to convert this request into a download */
- HLCACHE_RETRIEVE_MAY_DOWNLOAD = (1 << 31)
+ HLCACHE_RETRIEVE_MAY_DOWNLOAD = (1 << 31),
+ /* Permit content-type sniffing */
+ HLCACHE_RETRIEVE_SNIFF_TYPE = (1 << 30)
};
/**