]> granicus.if.org Git - apache/commitdiff
remove #if 0-ed ap_flush_conn() call; filters now handle flushing
authorDoug MacEachern <dougm@apache.org>
Mon, 20 Aug 2001 23:58:48 +0000 (23:58 +0000)
committerDoug MacEachern <dougm@apache.org>
Mon, 20 Aug 2001 23:58:48 +0000 (23:58 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90446 13f79535-47bb-0310-9956-ffa450edef68

modules/ssl/ssl_engine_kernel.c

index 2b954882d364a938db0e6ba4c73d3a33afeec523..95bd472a95c9fc9bf0f7254618fee1fe38dc09ce 100644 (file)
@@ -391,16 +391,6 @@ apr_status_t ssl_hook_CloseConnection(SSLFilterRec *filter)
     if (ssl == NULL)
         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: