diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-11-28 13:32:26 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2018-11-28 13:32:26 +0000 |
commit | 3a995b7221266ab58f8b3fac8fb02e70c23c42a9 (patch) | |
tree | 59e62d57f0abee986ceb81829c806112e8505a2b /src/libutil/regexp.h | |
parent | 71499b6811fdd2df0ecc7581120b83a0935b1370 (diff) | |
download | rspamd-3a995b7221266ab58f8b3fac8fb02e70c23c42a9.tar.gz rspamd-3a995b7221266ab58f8b3fac8fb02e70c23c42a9.zip |
[Minor] Store the fact that we have utf8 only regexps in corpus
Diffstat (limited to 'src/libutil/regexp.h')
-rw-r--r-- | src/libutil/regexp.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libutil/regexp.h b/src/libutil/regexp.h index 6b1bd50f9..b982c08f6 100644 --- a/src/libutil/regexp.h +++ b/src/libutil/regexp.h @@ -33,6 +33,7 @@ #define RSPAMD_REGEXP_FLAG_FULL_MATCH (1 << 3) #define RSPAMD_REGEXP_FLAG_PCRE_ONLY (1 << 4) #define RSPAMD_REGEXP_FLAG_DISABLE_JIT (1 << 5) +#define RSPAMD_REGEXP_FLAG_UTF (1 << 6) struct rspamd_config; |