diff options
author | Sander Striker <striker@apache.org> | 2003-10-24 18:20:28 +0200 |
---|---|---|
committer | Sander Striker <striker@apache.org> | 2003-10-24 18:20:28 +0200 |
commit | 67a3a718776eaab2699f55e61a3472af04a7b751 (patch) | |
tree | af267fefd1294b4d80bde34d080b91e2a3f43020 /include | |
parent | sync (diff) | |
download | apache2-67a3a718776eaab2699f55e61a3472af04a7b751.tar.xz apache2-67a3a718776eaab2699f55e61a3472af04a7b751.zip |
Fold in the CAN-2003-0542 regex patch.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@101556 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-rw-r--r-- | include/httpd.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/httpd.h b/include/httpd.h index 4f43931b3c..7512e93ba6 100644 --- a/include/httpd.h +++ b/include/httpd.h @@ -316,6 +316,9 @@ extern "C" { /** The size of the server's internal read-write buffers */ #define AP_IOBUFSIZE 8192 +/** The max number of regex captures that can be expanded by ap_pregsub */ +#define AP_MAX_REG_MATCH 10 + /** * APR_HAS_LARGE_FILES introduces the problem of spliting sendfile into * mutiple buckets, no greater than MAX(apr_size_t), and more granular |