1
0
mirror of https://github.com/apache/httpd.git synced 2025-08-07 04:02:58 +03:00

Add ap_process_request_after_handler to the exported list for mod_serf

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@906606 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
William A. Rowe Jr
2010-02-04 18:50:05 +00:00
parent 16b9ccd6ec
commit 4c8baf8db2
3 changed files with 7 additions and 4 deletions

View File

@@ -213,6 +213,7 @@
* 20091230.1 (2.3.5-dev) add util_ldap_state_t.opTimeout * 20091230.1 (2.3.5-dev) add util_ldap_state_t.opTimeout
* 20091230.2 (2.3.5-dev) add ap_get_server_name_for_url() * 20091230.2 (2.3.5-dev) add ap_get_server_name_for_url()
* 20091230.3 (2.3.6-dev) add ap_parse_log_level() * 20091230.3 (2.3.6-dev) add ap_parse_log_level()
* 20091230.4 (2.3.6-dev) export ap_process_request_after_handler() for mod_serf
* *
*/ */
@@ -221,7 +222,7 @@
#ifndef MODULE_MAGIC_NUMBER_MAJOR #ifndef MODULE_MAGIC_NUMBER_MAJOR
#define MODULE_MAGIC_NUMBER_MAJOR 20091230 #define MODULE_MAGIC_NUMBER_MAJOR 20091230
#endif #endif
#define MODULE_MAGIC_NUMBER_MINOR 3 /* 0...n */ #define MODULE_MAGIC_NUMBER_MINOR 4 /* 0...n */
/** /**
* Determine if the server's current MODULE_MAGIC_NUMBER is at least a * Determine if the server's current MODULE_MAGIC_NUMBER is at least a

View File

@@ -315,8 +315,10 @@ AP_DECLARE(void) ap_allow_standard_methods(request_rec *r, int reset, ...);
*/ */
void ap_process_request(request_rec *r); void ap_process_request(request_rec *r);
/* For post-processing after a handler has finished with a request. (Commonly used after it was suspended) */ /* For post-processing after a handler has finished with a request.
void ap_process_request_after_handler(request_rec *r); * (Commonly used after it was suspended)
*/
AP_DECLARE(void) ap_process_request_after_handler(request_rec *r);
/** /**
* Process a top-level request from a client, allowing some or all of * Process a top-level request from a client, allowing some or all of

View File

@@ -237,7 +237,7 @@ static void check_pipeline(conn_rec *c)
} }
void ap_process_request_after_handler(request_rec *r) AP_DECLARE(void) ap_process_request_after_handler(request_rec *r)
{ {
apr_bucket_brigade *bb; apr_bucket_brigade *bb;
apr_bucket *b; apr_bucket *b;