mirror of
https://github.com/apache/httpd.git
synced 2025-08-08 15:02:10 +03:00
Export ap_send_error_response
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84107 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
@@ -367,3 +367,4 @@ EXPORTS
|
|||||||
ap_hook_auth_checker @362
|
ap_hook_auth_checker @362
|
||||||
ap_hook_fixups @363
|
ap_hook_fixups @363
|
||||||
regerror @364
|
regerror @364
|
||||||
|
ap_send_error_response @365
|
||||||
|
@@ -106,7 +106,7 @@ API_EXPORT(void) ap_finalize_request_protocol(request_rec *r);
|
|||||||
* problem with the ErrorDocument.
|
* problem with the ErrorDocument.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
void ap_send_error_response(request_rec *r, int recursive_error);
|
API_EXPORT(void) ap_send_error_response(request_rec *r, int recursive_error);
|
||||||
|
|
||||||
/* Set last modified header line from the lastmod date of the associated file.
|
/* Set last modified header line from the lastmod date of the associated file.
|
||||||
* Also, set content length.
|
* Also, set content length.
|
||||||
|
@@ -367,3 +367,4 @@ EXPORTS
|
|||||||
ap_hook_auth_checker @362
|
ap_hook_auth_checker @362
|
||||||
ap_hook_fixups @363
|
ap_hook_fixups @363
|
||||||
regerror @364
|
regerror @364
|
||||||
|
ap_send_error_response @365
|
||||||
|
@@ -2391,7 +2391,7 @@ API_EXPORT(int) ap_rflush(request_rec *r)
|
|||||||
* and 5xx (server error) messages that have not been redirected to another
|
* and 5xx (server error) messages that have not been redirected to another
|
||||||
* handler via the ErrorDocument feature.
|
* handler via the ErrorDocument feature.
|
||||||
*/
|
*/
|
||||||
void ap_send_error_response(request_rec *r, int recursive_error)
|
API_EXPORT(void) ap_send_error_response(request_rec *r, int recursive_error)
|
||||||
{
|
{
|
||||||
int status = r->status;
|
int status = r->status;
|
||||||
int idx = ap_index_of_response(status);
|
int idx = ap_index_of_response(status);
|
||||||
|
Reference in New Issue
Block a user