diff options
author | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-02-23 17:47:33 +0000 |
---|---|---|
committer | Vsevolod Stakhov <vsevolod@highsecure.ru> | 2016-02-23 17:47:33 +0000 |
commit | 42dde66aa6a2e3ef225af67676d0d728e8e9cdc4 (patch) | |
tree | 977f2eb88b070376d7da3da251c320af261d0121 /src/libutil/regexp.h | |
parent | ceafdab3aedfd9069d1d45bac6d247f620382e74 (diff) | |
download | rspamd-42dde66aa6a2e3ef225af67676d0d728e8e9cdc4.tar.gz rspamd-42dde66aa6a2e3ef225af67676d0d728e8e9cdc4.zip |
Fix pcre jit fast path (one more time)
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 72ac6eec7..d130dea2b 100644 --- a/src/libutil/regexp.h +++ b/src/libutil/regexp.h @@ -32,6 +32,7 @@ #define RSPAMD_REGEXP_FLAG_NOOPT (1 << 2) #define RSPAMD_REGEXP_FLAG_FULL_MATCH (1 << 3) #define RSPAMD_REGEXP_FLAG_PCRE_ONLY (1 << 4) +#define RSPAMD_REGEXP_FLAG_DISABLE_JIT (1 << 5) typedef struct rspamd_regexp_s rspamd_regexp_t; struct rspamd_regexp_cache; |