dgaudet     97/07/19 03:20:52

  Modified:    src       CHANGES http_protocol.c
  Log:
  PR#815: get_client_block() returns wrong length if policy is
  REQUEST_CHUNKED_DECHUNK
  
  Submitted by: Kenichi Hori <[EMAIL PROTECTED]>
  Reviewed by:  Dean Gaudet
  
  Revision  Changes    Path
  1.350     +4 -0      apache/src/CHANGES
  
  Index: CHANGES
  ===================================================================
  RCS file: /export/home/cvs/apache/src/CHANGES,v
  retrieving revision 1.349
  retrieving revision 1.350
  diff -C3 -r1.349 -r1.350
  *** CHANGES   1997/07/19 09:48:03     1.349
  --- CHANGES   1997/07/19 10:20:50     1.350
  ***************
  *** 1,4 ****
  --- 1,8 ----
    Changes with Apache 1.3
  +   
  +   *) get_client_block() returns wrong length if policy is
  +      REQUEST_CHUNKED_DECHUNK.
  +      [Kenichi Hori <[EMAIL PROTECTED]>] PR#815
    
      *) Support the image map format of FrontPage.  For example:
        rect /url.hrm 10 20 30 40
  
  
  
  1.142     +5 -1      apache/src/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_protocol.c,v
  retrieving revision 1.141
  retrieving revision 1.142
  diff -C3 -r1.141 -r1.142
  *** http_protocol.c   1997/07/19 08:02:04     1.141
  --- http_protocol.c   1997/07/19 10:20:50     1.142
  ***************
  *** 1462,1468 ****
                buffer[chunk_start++] = LF;
                buffer += chunk_start;       /* and pass line on to caller   */
                bufsiz -= chunk_start;
  !         }
        }
                                         /* When REQUEST_CHUNKED_PASS, we are */
        if (r->remaining == -1) {        /* reading footers until empty line  */
  --- 1462,1472 ----
                buffer[chunk_start++] = LF;
                buffer += chunk_start;       /* and pass line on to caller   */
                bufsiz -= chunk_start;
  !         } else {
  !         /* REQUEST_CHUNKED_DECHUNK -- do not include the length of
  !          * the header in the return value */
  !         chunk_start = 0;
  !     }
        }
                                         /* When REQUEST_CHUNKED_PASS, we are */
        if (r->remaining == -1) {        /* reading footers until empty line  */
  
  
  

Reply via email to