You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by Alexei Kosut <ak...@hyperreal.com> on 1997/01/10 20:28:56 UTC

cvs commit: apache/src http_protocol.c http_protocol.h

akosut      97/01/10 11:28:55

  Modified:    src       http_protocol.c http_protocol.h
  Log:
  Add rflush() function.
  
  Reviewed by: Dirk van Gulik, Chuck Murcko, Randy Terbush
  
  Revision  Changes    Path
  1.88      +4 -0      apache/src/http_protocol.c
  
  Index: http_protocol.c
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_protocol.c,v
  retrieving revision 1.87
  retrieving revision 1.88
  diff -C3 -r1.87 -r1.88
  *** http_protocol.c	1997/01/01 18:10:21	1.87
  --- http_protocol.c	1997/01/10 19:28:52	1.88
  ***************
  *** 1436,1441 ****
  --- 1436,1445 ----
        return k;
    }
    
  + int rflush (request_rec *r) {
  +     return bflush(r->connection->client);
  + }
  + 
    void send_error_response (request_rec *r, int recursive_error)
    {
        conn_rec *c = r->connection;
  
  
  
  1.17      +1 -0      apache/src/http_protocol.h
  
  Index: http_protocol.h
  ===================================================================
  RCS file: /export/home/cvs/apache/src/http_protocol.h,v
  retrieving revision 1.16
  retrieving revision 1.17
  diff -C3 -r1.16 -r1.17
  *** http_protocol.h	1997/01/01 18:10:21	1.16
  --- http_protocol.h	1997/01/10 19:28:53	1.17
  ***************
  *** 115,120 ****
  --- 115,121 ----
    int rwrite(const void *buf, int nbyte, request_rec *r);
    int rvputs(request_rec *r, ...);
    int rprintf(request_rec *r,const char *fmt,...);
  + int rflush(request_rec *r);
         
    /*
     * Index used in custom_responses array for a specific error code