Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 38975 invoked from network); 6 Feb 2004 22:10:19 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 6 Feb 2004 22:10:19 -0000 Received: (qmail 54765 invoked by uid 500); 6 Feb 2004 22:09:54 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 54532 invoked by uid 500); 6 Feb 2004 22:09:52 -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 54502 invoked from network); 6 Feb 2004 22:09:52 -0000 Received: from unknown (HELO mx1.redhat.com) (66.187.233.31) by daedalus.apache.org with SMTP; 6 Feb 2004 22:09:52 -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 i16M9wb30985 for ; Fri, 6 Feb 2004 17:09:58 -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 i16M9va15223 for ; Fri, 6 Feb 2004 17:09:57 -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 i16M9vAO012080 for ; Fri, 6 Feb 2004 22:09:57 GMT Received: (from jorton@localhost) by radish.cambridge.redhat.com (8.12.10/8.12.10/Submit) id i16M9uuF012079 for dev@httpd.apache.org; Fri, 6 Feb 2004 22:09:56 GMT Date: Fri, 6 Feb 2004 22:09:56 +0000 From: Joe Orton To: dev@httpd.apache.org Subject: Re: [PATCH] RE: mod_ssl not sending Alert upon close ? Message-ID: <20040206220956.GA12025@redhat.com> Mail-Followup-To: dev@httpd.apache.org References: <16A24B6050584143978000646801E93557BEAB@cacexc03.americas.cpqcorp.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <16A24B6050584143978000646801E93557BEAB@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 Fri, Feb 06, 2004 at 01:30:00PM -0800, Mathihalli, Madhusudan wrote: > IOW, the following patch works. > > Question: Is there any other hook / pool-cleanup thing that I can hook the ssl_filter_io_shutdown() logic into ? No, that can't be right either, it would close the connection after each request. I came to the same conclusion as you: this needs a new hook which is run before the lingering close. Could call it {close,finish,post}_connection or something like that: it could be run from ap_process_connection. joe