diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-11-14 15:08:02 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2014-11-14 15:08:02 +0000 |
commit | 46acf7be5791a164f8fa5dbc16494d8175e5b850 (patch) | |
tree | 16403abc98efcd5955cd83d57172db53c6a31b0b /src/libserver/html.h | |
parent | 659ff5ca02101ad4d8a9d8eabeb376c44519c7d1 (diff) | |
download | rspamd-46acf7be5791a164f8fa5dbc16494d8175e5b850.tar.gz rspamd-46acf7be5791a164f8fa5dbc16494d8175e5b850.zip |
Ignore SGML style tags in html.
Diffstat (limited to 'src/libserver/html.h')
-rw-r--r-- | src/libserver/html.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/libserver/html.h b/src/libserver/html.h index 6709ed151..1760ad0ca 100644 --- a/src/libserver/html.h +++ b/src/libserver/html.h @@ -192,6 +192,8 @@ typedef enum #define FL_CLOSING (1 << 1) /* Fully closed tag (e.g. <a attrs />) */ #define FL_CLOSED (1 << 2) +/* <! SGML tag */ +#define FL_SGML (1 << 3) struct html_tag { tag_id_t id; |