]> granicus.if.org Git - apache/commitdiff
Export ap_send_error_response
authorBill Stoddard <stoddard@apache.org>
Fri, 5 Nov 1999 15:45:05 +0000 (15:45 +0000)
committerBill Stoddard <stoddard@apache.org>
Fri, 5 Nov 1999 15:45:05 +0000 (15:45 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@84107 13f79535-47bb-0310-9956-ffa450edef68

ApacheCore.def
include/http_protocol.h
libhttpd.def
modules/http/http_protocol.c

index ebf3dba8ad1f273280f10965f2c5edd280bc4c34..0f2605a5a404556fbf2509d9cda3d33f9e716319 100644 (file)
@@ -367,3 +367,4 @@ EXPORTS
        ap_hook_auth_checker @362
        ap_hook_fixups @363
         regerror @364
+        ap_send_error_response @365
index eab522e972de72e6eeb3609c81fc51e09d960d95..8a5e75396fa5fe1c331ec470fa9614244d27067a 100644 (file)
@@ -106,7 +106,7 @@ API_EXPORT(void) ap_finalize_request_protocol(request_rec *r);
  * 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.
  * Also, set content length.
index ebf3dba8ad1f273280f10965f2c5edd280bc4c34..0f2605a5a404556fbf2509d9cda3d33f9e716319 100644 (file)
@@ -367,3 +367,4 @@ EXPORTS
        ap_hook_auth_checker @362
        ap_hook_fixups @363
         regerror @364
+        ap_send_error_response @365
index 24a5dff0d81e5c792c83a94b2013e1e073878388..492774cded83d7c4dae0718fa83938d2ef3af0bb 100644 (file)
@@ -2391,7 +2391,7 @@ API_EXPORT(int) ap_rflush(request_rec *r)
  * and 5xx (server error) messages that have not been redirected to another
  * 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 idx = ap_index_of_response(status);