Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 21126 invoked from network); 2 Jan 2009 21:50:12 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.2) by minotaur.apache.org with SMTP; 2 Jan 2009 21:50:12 -0000 Received: (qmail 4910 invoked by uid 500); 2 Jan 2009 21:50:05 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 4858 invoked by uid 500); 2 Jan 2009 21:50: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: List-Id: Delivered-To: mailing list dev@httpd.apache.org Received: (qmail 4849 invoked by uid 99); 2 Jan 2009 21:50:05 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Fri, 02 Jan 2009 13:50:05 -0800 X-ASF-Spam-Status: No, hits=0.0 required=10.0 tests= X-Spam-Check-By: apache.org Received: from [140.211.11.9] (HELO minotaur.apache.org) (140.211.11.9) by apache.org (qpsmtpd/0.29) with SMTP; Fri, 02 Jan 2009 21:50:03 +0000 Received: (qmail 20819 invoked by uid 2161); 2 Jan 2009 21:49:42 -0000 Received: from [192.168.2.4] (euler.heimnetz.de [192.168.2.4]) by cerberus.heimnetz.de (Postfix on SuSE Linux 7.0 (i386)) with ESMTP id 2DF9C1721C for ; Fri, 2 Jan 2009 22:49:32 +0100 (CET) Message-ID: <495E8C1A.9050908@apache.org> Date: Fri, 02 Jan 2009 22:50:18 +0100 From: Ruediger Pluem User-Agent: Mozilla/5.0 (X11; U; Linux i686; en-US; rv:1.8.1.19) Gecko/20081204 SeaMonkey/1.1.14 MIME-Version: 1.0 To: dev@httpd.apache.org Subject: Re: svn commit: r730835 - /httpd/httpd/trunk/server/core.c References: <20090102200900.6204A23889A0@eris.apache.org> <495E85B0.9040700@apache.org> <495E86D3.4080309@rowe-clan.net> In-Reply-To: <495E86D3.4080309@rowe-clan.net> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-Virus-Checked: Checked by ClamAV on apache.org On 01/02/2009 10:27 PM, William A. Rowe, Jr. wrote: > Ruediger Pluem wrote: >> Otherwise the table will not be empty anymore in the case that >> neither APR_HAS_SO_ACCEPTFILTER nor APR_TCP_DEFER_ACCEPT is set. > > Uhm ... huh? What gave you the idea that APR_TCP_DEFER_ACCEPT > is a volatile? It's present in apr 1.3 (our baseline) and will > be sticking around into the foreseeable future. > > It is neither a HAS nor HAVE feature flag. In fact it's the reason > I started refactoring this code, it was complete twaddle. Ahh, sorry I missed this point. I guess in this case the #ifdef from the following code in listen.c should also go away: #ifdef APR_TCP_DEFER_ACCEPT rv = apr_socket_opt_set(s, APR_TCP_DEFER_ACCEPT, 30); if (rv != APR_SUCCESS && !APR_STATUS_IS_ENOTIMPL(rv)) { ap_log_perror(APLOG_MARK, APLOG_WARNING, rv, p, "Failed to enable APR_TCP_DEFER_ACCEPT"); } #endif Regards RĂ¼diger