mirror of
https://github.com/apache/httpd.git
synced 2025-08-07 04:02:58 +03:00
ap_process_request needs exportation for use in mod_h2 on Windows
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1694950 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -316,7 +316,7 @@ AP_DECLARE(void) ap_allow_standard_methods(request_rec *r, int reset, ...);
|
|||||||
* the response to the client
|
* the response to the client
|
||||||
* @param r The current request
|
* @param r The current request
|
||||||
*/
|
*/
|
||||||
void ap_process_request(request_rec *r);
|
AP_DECLARE(void) ap_process_request(request_rec *r);
|
||||||
|
|
||||||
/* For post-processing after a handler has finished with a request.
|
/* For post-processing after a handler has finished with a request.
|
||||||
* (Commonly used after it was suspended)
|
* (Commonly used after it was suspended)
|
||||||
|
@@ -363,7 +363,7 @@ void ap_process_async_request(request_rec *r)
|
|||||||
ap_process_request_after_handler(r);
|
ap_process_request_after_handler(r);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ap_process_request(request_rec *r)
|
AP_DECLARE(void) ap_process_request(request_rec *r)
|
||||||
{
|
{
|
||||||
apr_bucket_brigade *bb;
|
apr_bucket_brigade *bb;
|
||||||
apr_bucket *b;
|
apr_bucket *b;
|
||||||
|
Reference in New Issue
Block a user