You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by nd...@apache.org on 2004/04/21 23:57:19 UTC

cvs commit: httpd-2.0/server protocol.c

nd          2004/04/21 14:57:19

  Modified:    .        CHANGES
               server   protocol.c
  Log:
  ap_set_sub_req_protocol and ap_finalize_sub_req_protocol are now
  exported on Win32 as well
  
  PR: 28523
  Submitted by: Edward Rudd <eddie omegaware.com>
  
  Revision  Changes    Path
  1.1466    +4 -0      httpd-2.0/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/CHANGES,v
  retrieving revision 1.1465
  retrieving revision 1.1466
  diff -u -u -r1.1465 -r1.1466
  --- CHANGES	21 Apr 2004 21:24:28 -0000	1.1465
  +++ CHANGES	21 Apr 2004 21:57:19 -0000	1.1466
  @@ -2,6 +2,10 @@
   
     [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 <eddie omegaware.com>, 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
  
  
  
  1.147     +3 -2      httpd-2.0/server/protocol.c
  
  Index: protocol.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/server/protocol.c,v
  retrieving revision 1.146
  retrieving revision 1.147
  diff -u -u -r1.146 -r1.147
  --- protocol.c	1 Mar 2004 21:40:44 -0000	1.146
  +++ protocol.c	21 Apr 2004 21:57:19 -0000	1.147
  @@ -977,7 +977,8 @@
    * *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 @@
       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) {