diff options
author | Graham Leggett <minfrin@apache.org> | 2010-11-16 01:23:37 +0100 |
---|---|---|
committer | Graham Leggett <minfrin@apache.org> | 2010-11-16 01:23:37 +0100 |
commit | 38437740bb3f236cb77541bd985877cf809089e7 (patch) | |
tree | c3bdd3e91205868dcc2490202f3df8c4cbd784cf /include | |
parent | Adds indentation. Cosmetic change only. (diff) | |
download | apache2-38437740bb3f236cb77541bd985877cf809089e7.tar.xz apache2-38437740bb3f236cb77541bd985877cf809089e7.zip |
Fix pool lifetime issues when the proxy backend connection is terminated
early by forcing a setaside on transient buckets placed in the brigade
by mod_ssl. This has the effect of extending the lifetime of buckets until
the end of the request. This is a variation on the original fix for this
problem, which added transient buckets to be setaside later in the process.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1035504 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include')
-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 792c8cd837..a2c40a1f72 100644 --- a/include/ap_mmn.h +++ b/include/ap_mmn.h @@ -284,12 +284,13 @@ * 20101106.1 (2.3.9-dev) Add ap_pool_cleanup_set_null() generic cleanup * 20101106.2 (2.3.9-dev) Add suexec_disabled_reason field to ap_unixd_config * 20101113.0 (2.3.9-dev) Add source address to mod_proxy.h + * 20101116.0 (2.3.9-dev) Remove ap_proxy_buckets_lifetime_transform() */ #define MODULE_MAGIC_COOKIE 0x41503234UL /* "AP24" */ #ifndef MODULE_MAGIC_NUMBER_MAJOR -#define MODULE_MAGIC_NUMBER_MAJOR 20101113 +#define MODULE_MAGIC_NUMBER_MAJOR 20101116 #endif #define MODULE_MAGIC_NUMBER_MINOR 0 /* 0...n */ |