diff options
author | André Malo <nd@apache.org> | 2004-10-17 20:31:44 +0200 |
---|---|---|
committer | André Malo <nd@apache.org> | 2004-10-17 20:31:44 +0200 |
commit | a9a11aab672f383ce0b8068a4290aedc3705957c (patch) | |
tree | 25826dfd22c201948a06e48335779ead3001070a /include | |
parent | minor optimizations (diff) | |
download | apache2-a9a11aab672f383ce0b8068a4290aedc3705957c.tar.xz apache2-a9a11aab672f383ce0b8068a4290aedc3705957c.zip |
allow <= and >= for filter dispatcher
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@105507 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/util_filter.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/util_filter.h b/include/util_filter.h index 7d422369e2..d400208e85 100644 --- a/include/util_filter.h +++ b/include/util_filter.h @@ -275,7 +275,9 @@ struct ap_filter_provider_t { REGEX_MATCH, INT_EQ, INT_LT, + INT_LE, INT_GT, + INT_GE, DEFINED } match_type; |