You are viewing a plain text version of this content. The canonical link for it is here.
Posted to cvs@httpd.apache.org by do...@apache.org on 2001/08/21 01:58:48 UTC

cvs commit: httpd-2.0/modules/ssl ssl_engine_kernel.c

dougm       01/08/20 16:58:48

  Modified:    modules/ssl ssl_engine_kernel.c
  Log:
  remove #if 0-ed ap_flush_conn() call; filters now handle flushing
  
  Revision  Changes    Path
  1.15      +0 -10     httpd-2.0/modules/ssl/ssl_engine_kernel.c
  
  Index: ssl_engine_kernel.c
  ===================================================================
  RCS file: /home/cvs/httpd-2.0/modules/ssl/ssl_engine_kernel.c,v
  retrieving revision 1.14
  retrieving revision 1.15
  diff -u -r1.14 -r1.15
  --- ssl_engine_kernel.c	2001/08/16 03:58:16	1.14
  +++ ssl_engine_kernel.c	2001/08/20 23:58:48	1.15
  @@ -392,16 +392,6 @@
           return APR_SUCCESS;
   
       /*
  -     * First make sure that no more data is pending in Apache's BUFF,
  -     * because when it's (implicitly) flushed later by the ap_bclose()
  -     * calls of Apache it would lead to an I/O error in the browser due
  -     * to the fact that the SSL layer was already removed by us.
  -     */
  -#if 0 /* XXX We've flush the OpenSSL buffer and not connection buffer - TBD */
  -    ap_flush_conn(conn);
  -#endif
  -
  -    /*
        * Now close the SSL layer of the connection. We've to take
        * the TLSv1 standard into account here:
        *