summaryrefslogtreecommitdiff
path: root/include/hubbub
diff options
context:
space:
mode:
authorAndrew Sidwell <andy@entai.co.uk>2008-08-11 01:29:00 +0000
committerAndrew Sidwell <andy@entai.co.uk>2008-08-11 01:29:00 +0000
commita6c3624c75a547e142fc732898f9a3890fa9e2f5 (patch)
tree6e1b44c51a706843d2057e3e1126ffa5714becf1 /include/hubbub
parent4aef3c775e93d5add0277941fe0ecccc91d4ccb3 (diff)
downloadlibhubbub-a6c3624c75a547e142fc732898f9a3890fa9e2f5.tar.gz
libhubbub-a6c3624c75a547e142fc732898f9a3890fa9e2f5.tar.bz2
Move one step closer to getting encoding changes working.
svn path=/trunk/hubbub/; revision=5000
Diffstat (limited to 'include/hubbub')
-rw-r--r--include/hubbub/types.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/hubbub/types.h b/include/hubbub/types.h
index 42d1460..07ef2ab 100644
--- a/include/hubbub/types.h
+++ b/include/hubbub/types.h
@@ -15,11 +15,10 @@
* A client-dictated charset will override all others.
* A document-specified charset will override autodetection or the default */
typedef enum hubbub_charset_source {
- HUBBUB_CHARSET_UNKNOWN = 0, /**< Unknown */
- HUBBUB_CHARSET_DEFAULT = 1, /**< Default setting */
- HUBBUB_CHARSET_DETECTED = 2, /**< Autodetected */
- HUBBUB_CHARSET_DOCUMENT = 3, /**< Defined in document */
- HUBBUB_CHARSET_DICTATED = 4, /**< Dictated by client */
+ HUBBUB_CHARSET_UNKNOWN = 0, /**< Unknown */
+ HUBBUB_CHARSET_TENTATIVE = 1, /**< Charset may be changed
+ * with further data */
+ HUBBUB_CHARSET_CONFIDENT = 2, /**< Charset definite */
} hubbub_charset_source;
/**