Return-Path: X-Original-To: apmail-httpd-dev-archive@www.apache.org Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 286DD7AEB for ; Sun, 18 Sep 2011 15:26:58 +0000 (UTC) Received: (qmail 19340 invoked by uid 500); 18 Sep 2011 15:26:57 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 19237 invoked by uid 500); 18 Sep 2011 15:26:57 -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 19225 invoked by uid 99); 18 Sep 2011 15:26:57 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Sep 2011 15:26:57 +0000 X-ASF-Spam-Status: No, hits=-0.7 required=5.0 tests=FREEMAIL_FROM,RCVD_IN_DNSWL_LOW,SPF_PASS,T_TO_NO_BRKTS_FREEMAIL X-Spam-Check-By: apache.org Received-SPF: pass (athena.apache.org: domain of covener@gmail.com designates 209.85.210.173 as permitted sender) Received: from [209.85.210.173] (HELO mail-iy0-f173.google.com) (209.85.210.173) by apache.org (qpsmtpd/0.29) with ESMTP; Sun, 18 Sep 2011 15:26:50 +0000 Received: by iagf6 with SMTP id f6so6651734iag.18 for ; Sun, 18 Sep 2011 08:26:30 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=CUvauvvqEOG6CIvP0EO5hTh/UdKaurJPE+JiBH1Xobw=; b=WxQrWPu19mfabpJfq2dP4VQBBa+hOZBd/clHAMlU8IZO2eGosxpx/FXyGAUrbViCvb 1XYEd2pkdXNLfPFoLyTemL5vSWAHkeXj9nbmijZe9Eor9iRSeHO8/A7hJK6e/7KmacRy MGmGJPGikKOEITkuxc4EexUPSVeVx0WCxGWS0= MIME-Version: 1.0 Received: by 10.42.28.5 with SMTP id l5mr2689889icc.224.1316359590585; Sun, 18 Sep 2011 08:26:30 -0700 (PDT) Received: by 10.43.47.4 with HTTP; Sun, 18 Sep 2011 08:26:30 -0700 (PDT) In-Reply-To: <201109152109.40930.sf@sfritsch.de> References: <6506509B-B530-440D-BC13-1FFE66C7234B@jaguNET.com> <201109152109.40930.sf@sfritsch.de> Date: Sun, 18 Sep 2011 11:26:30 -0400 Message-ID: Subject: Re: Pushing for httpd 2.4.0 GA From: Eric Covener To: dev@httpd.apache.org Content-Type: text/plain; charset=ISO-8859-1 > I think the windows accept filter issue is a real blocker. The only > alternative would be to release 2.4.0 without official support for > Windows. I took a look at this in the AM, and it looks like the acceptfilter none path is relying on data set only by AcceptEX (context->buffer) to fill in context->sa_server (child.c:590). In 2.2 the context->buffer is seeded by the 9x specific code. Seems like that block of code just needs a backport from win9x_get_connection to set the server side of this structure correctly before it's copied into "sockinfo" later in the same function. I can't easily build it and not sure what other non-acceptex 9x-isms are in win9x_get_connection. This matches the reports of the base VH being picked every time, but I couldn't find on the list where the culprit had been identified before.