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 B7A5118813 for ; Wed, 4 Nov 2015 13:16:42 +0000 (UTC) Received: (qmail 3088 invoked by uid 500); 4 Nov 2015 13:16:42 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 3018 invoked by uid 500); 4 Nov 2015 13:16:42 -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 3008 invoked by uid 99); 4 Nov 2015 13:16:42 -0000 Received: from Unknown (HELO spamd3-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 04 Nov 2015 13:16:42 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd3-us-west.apache.org (ASF Mail Server at spamd3-us-west.apache.org) with ESMTP id 9B4CB180251 for ; Wed, 4 Nov 2015 13:16:41 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd3-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -0.111 X-Spam-Level: X-Spam-Status: No, score=-0.111 tagged_above=-999 required=6.31 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, SPF_PASS=-0.001, T_RP_MATCHES_RCVD=-0.01] autolearn=disabled Authentication-Results: spamd3-us-west.apache.org (amavisd-new); dkim=pass (1024-bit key) header.d=greenbytes.de Received: from mx1-eu-west.apache.org ([10.40.0.8]) by localhost (spamd3-us-west.apache.org [10.40.0.10]) (amavisd-new, port 10024) with ESMTP id IBDHEzNb-VrV for ; Wed, 4 Nov 2015 13:16:40 +0000 (UTC) Received: from mail.greenbytes.de (mail.greenbytes.de [217.91.35.233]) by mx1-eu-west.apache.org (ASF Mail Server at mx1-eu-west.apache.org) with ESMTPS id 883E420A92 for ; Wed, 4 Nov 2015 13:16:40 +0000 (UTC) Received: from [192.168.1.42] (unknown [217.91.35.233]) (using TLSv1 with cipher ECDHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by mail.greenbytes.de (Postfix) with ESMTPSA id 62F1F15A0098 for ; Wed, 4 Nov 2015 14:16:33 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=simple/simple; d=greenbytes.de; s=mail; t=1446642993; bh=WCo+fsSM/fdfJI/wgKySjSu+NSMqUh/5INEYZ8upuqI=; h=From:Subject:Date:To:From; b=V1aKoao+lWZN+NK1Qc2Tdbm2qMtKg7mpMdl6zc9kfMGnypif4jFIfwZRrXi/hxndp gsh3clbAkMJzf+v3DG2Goiz3DkB4N081kgFYdwqFaVyxP6ZliqsMHchyH1LUlCoHsh GTanoYfM0UU0yAoQSFh4ItJUJ3TTriMm3XTR5gTE= From: Stefan Eissing Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Subject: conn_rec -> master Message-Id: <991659BB-455C-4DC4-848C-B7325CD95E0A@greenbytes.de> Date: Wed, 4 Nov 2015 14:16:33 +0100 To: dev@httpd.apache.org Mime-Version: 1.0 (Mac OS X Mail 9.1 \(3096.5\)) X-Mailer: Apple Mail (2.3096.5) As discussed before, I want to propose backporting changes that require the "master" member in conn_rec. Those were introduced in trunk with 1565657: http://svn.apache.org/viewvc?view=revision&revision=r1565657 but I would favor ("like") the backporting of just the addition of + /** The "real" master connection. NULL if I am the master. */ + conn_rec *master; only as the whole array of slave connections is not used by anyone yet and I am not certain that the final design will look like it. Backport proposal of a partial change by referring tot he change and providing own patch? //Stefan