You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Chuck Murcko <ch...@hyperreal.com> on 1996/10/09 00:49:33 UTC

cvs commit: apache/src/modules/proxy proxy_http.c

chuck       96/10/08 15:49:32

  Modified:    src/modules/proxy  proxy_http.c
  Log:
  Change read_client_block to get_client_block for "100 Continue" patch.
  
  Revision  Changes    Path
  1.2       +2 -2      apache/src/modules/proxy/proxy_http.c
  
  Index: proxy_http.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/modules/proxy/proxy_http.c,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -C3 -r1.1 -r1.2
  *** proxy_http.c	1996/10/01 07:11:45	1.1
  --- proxy_http.c	1996/10/08 22:49:29	1.2
  ***************
  *** 50,56 ****
     *
     */
    
  ! /* $Id: proxy_http.c,v 1.1 1996/10/01 07:11:45 chuck Exp $ */
    
    /* HTTP routines for Apache proxy */
    
  --- 50,56 ----
     *
     */
    
  ! /* $Id: proxy_http.c,v 1.2 1996/10/08 22:49:29 chuck Exp $ */
    
    /* HTTP routines for Apache proxy */
    
  ***************
  *** 212,218 ****
    
        if (should_client_block(r))
        {
  ! 	while ((i = read_client_block (r, buffer, HUGE_STRING_LEN)))
                bwrite(f, buffer, i);
        }
        bflush(f);
  --- 212,218 ----
    
        if (should_client_block(r))
        {
  ! 	while ((i = get_client_block (r, buffer, HUGE_STRING_LEN)))
                bwrite(f, buffer, i);
        }
        bflush(f);