Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 27697 invoked from network); 23 Feb 2004 22:08:04 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 23 Feb 2004 22:08:04 -0000 Received: (qmail 23548 invoked by uid 500); 23 Feb 2004 22:07:05 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 23502 invoked by uid 500); 23 Feb 2004 22:07:05 -0000 Mailing-List: contact dev-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: list-post: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 23478 invoked from network); 23 Feb 2004 22:07:05 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by daedalus.apache.org with SMTP; 23 Feb 2004 22:07:05 -0000 Received: from int-mx1.corp.redhat.com (int-mx1.corp.redhat.com [172.16.52.254]) by mx1.redhat.com (8.11.6/8.11.6) with ESMTP id i1NM7Ab08737 for ; Mon, 23 Feb 2004 17:07:10 -0500 Received: from radish.cambridge.redhat.com (radish.cambridge.redhat.com [172.16.18.90]) by int-mx1.corp.redhat.com (8.11.6/8.11.6) with ESMTP id i1NM7Ai07944 for ; Mon, 23 Feb 2004 17:07:10 -0500 Received: from radish.cambridge.redhat.com (localhost.localdomain [127.0.0.1]) by radish.cambridge.redhat.com (8.12.10/8.12.7) with ESMTP id i1NM79Ur025582 for ; Mon, 23 Feb 2004 22:07:09 GMT Received: (from jorton@localhost) by radish.cambridge.redhat.com (8.12.10/8.12.10/Submit) id i1NM78rJ025581 for dev@httpd.apache.org; Mon, 23 Feb 2004 22:07:08 GMT Date: Mon, 23 Feb 2004 22:07:08 +0000 From: Joe Orton To: dev@httpd.apache.org Subject: Re: [PATCH] SSL not sending close alert message Message-ID: <20040223220708.GA25574@redhat.com> Mail-Followup-To: dev@httpd.apache.org References: <16A24B6050584143978000646801E93557BEE5@cacexc03.americas.cpqcorp.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <16A24B6050584143978000646801E93557BEE5@cacexc03.americas.cpqcorp.net> User-Agent: Mutt/1.4.1i X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N X-Spam-Rating: minotaur-2.apache.org 1.6.2 0/1000/N On Mon, Feb 23, 2004 at 01:22:05PM -0800, Mathihalli, Madhusudan wrote: > Hi, > I started working on Justin's idea of creating a EOC bucket - to > do a SSL shutdown before the socket close(). But since the > ap_flush_conn is called just before closing the socket - I > thought of doing the SSL shutdown during the flush itself. Let > me know what you think of this patch. This is just back to what we had patches for already: doing an SSL shutdown on any EOF bucket, right? Which is not right since you get an EOS after each HTTP response, not at the end of the connection. Hence the need for a new bucket type to represent end-of-connection differently from EOS. (the test case for that is to see if you can send two requests on a single SSL connection) joe