diff options
author | Ken Coar <coar@apache.org> | 2001-05-18 20:38:42 +0200 |
---|---|---|
committer | Ken Coar <coar@apache.org> | 2001-05-18 20:38:42 +0200 |
commit | 2b54256b593d4409a989c11725ed118d3c9e5dc4 (patch) | |
tree | dede30cc25a998e08db65176b87043826a88d03e /modules/mappers/mod_rewrite.h | |
parent | We don't want these operations to end the stream, simply flush out (diff) | |
download | apache2-2b54256b593d4409a989c11725ed118d3c9e5dc4.tar.xz apache2-2b54256b593d4409a989c11725ed118d3c9e5dc4.zip |
Bring forward the NOESCAPE flag from 1.3..
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89158 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'modules/mappers/mod_rewrite.h')
-rw-r--r-- | modules/mappers/mod_rewrite.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/modules/mappers/mod_rewrite.h b/modules/mappers/mod_rewrite.h index f139877978..4458575c6e 100644 --- a/modules/mappers/mod_rewrite.h +++ b/modules/mappers/mod_rewrite.h @@ -185,6 +185,10 @@ #define RULEFLAG_GONE 1<<10 #define RULEFLAG_QSAPPEND 1<<11 #define RULEFLAG_NOCASE 1<<12 +#define RULEFLAG_NOESCAPE 1<<13 + +#define ACTION_NORMAL 1<<0 +#define ACTION_NOESCAPE 1<<1 #define MAPTYPE_TXT 1<<0 #define MAPTYPE_DBM 1<<1 |