diff options
author | Yann Ylavic <ylavic@apache.org> | 2024-01-16 17:56:58 +0100 |
---|---|---|
committer | Yann Ylavic <ylavic@apache.org> | 2024-01-16 17:56:58 +0100 |
commit | 97a18733327438ac52ac13b2904e4319dca5ce0d (patch) | |
tree | 185e6edb9b0717a1567fa8bb48fc62c80f4f60c5 /include/ap_mmn.h | |
parent | regex: Add ap_regexec_ex() which can take a starting offset to match from. (diff) | |
download | apache2-97a18733327438ac52ac13b2904e4319dca5ce0d.tar.xz apache2-97a18733327438ac52ac13b2904e4319dca5ce0d.zip |
regex: Add AP_REG_NOTEMPTY_ATSTART maching option.
* include/ap_mmn.h:
Bump MMN minor.
* include/ap_regex.h:
Define AP_REG_NOTEMPTY_ATSTART bit.
* server/util_pcre.c(ap_regexec_ex):
Map AP_REG_NOTEMPTY_ATSTART to native PCRE_NOTEMPTY_ATSTART.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1915268 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/ap_mmn.h')
-rw-r--r-- | include/ap_mmn.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/ap_mmn.h b/include/ap_mmn.h index ea1ce0c43a..9d79c14e95 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -722,6 +722,7 @@ * 20211221.16 (2.5.1-dev) Add ap_proxy_determine_address() * 20211221.17 (2.5.1-dev) Add ap_proxy_worker_get_name() * 20211221.18 (2.5.1-dev) Add ap_regexec_ex() + * 20211221.19 (2.5.1-dev) Add AP_REG_NOTEMPTY_ATSTART */ #define MODULE_MAGIC_COOKIE 0x41503235UL /* "AP25" */ @@ -729,7 +730,7 @@ #ifndef MODULE_MAGIC_NUMBER_MAJOR #define MODULE_MAGIC_NUMBER_MAJOR 20211221 #endif -#define MODULE_MAGIC_NUMBER_MINOR 18 /* 0...n */ +#define MODULE_MAGIC_NUMBER_MINOR 19 /* 0...n */ /** * Determine if the server's current MODULE_MAGIC_NUMBER is at least a |