From: André Malo Date: Wed, 21 Apr 2004 21:57:19 +0000 (+0000) Subject: ap_set_sub_req_protocol and ap_finalize_sub_req_protocol are now X-Git-Tag: pre_ajp_proxy~338 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=3cec2db307350922fd4d205a0fd86d31d5b282af;p=apache ap_set_sub_req_protocol and ap_finalize_sub_req_protocol are now exported on Win32 as well PR: 28523 Submitted by: Edward Rudd git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103474 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/CHANGES b/CHANGES index 3394e78edb..9a3bb09d7b 100644 --- a/CHANGES +++ b/CHANGES @@ -2,6 +2,10 @@ Changes with Apache 2.1.0-dev [Remove entries to the current 2.0 section below, when backported] + *) ap_set_sub_req_protocol and ap_finalize_sub_req_protocol are now + exported on Win32 as well. PR 28523. + [Edward Rudd , André Malo] + *) Include directives no longer refuse to process symlinks on directories. Instead there's now a maximum nesting level of included directories (128 as distributed). This is configurable diff --git a/server/protocol.c b/server/protocol.c index be69a227ce..60203064b0 100644 --- a/server/protocol.c +++ b/server/protocol.c @@ -977,7 +977,8 @@ request_rec *ap_read_request(conn_rec *conn) * *someone* has to set the protocol-specific fields... */ -void ap_set_sub_req_protocol(request_rec *rnew, const request_rec *r) +AP_DECLARE(void) ap_set_sub_req_protocol(request_rec *rnew, + const request_rec *r) { rnew->the_request = r->the_request; /* Keep original request-line */ @@ -1015,7 +1016,7 @@ static void end_output_stream(request_rec *r) ap_pass_brigade(r->output_filters, bb); } -void ap_finalize_sub_req_protocol(request_rec *sub) +AP_DECLARE(void) ap_finalize_sub_req_protocol(request_rec *sub) { /* tell the filter chain there is no more content coming */ if (!sub->eos_sent) {