Return-Path: Delivered-To: apmail-httpd-dev-archive@www.apache.org Received: (qmail 98273 invoked from network); 3 Feb 2004 22:11:55 -0000 Received: from daedalus.apache.org (HELO mail.apache.org) (208.185.179.12) by minotaur-2.apache.org with SMTP; 3 Feb 2004 22:11:55 -0000 Received: (qmail 92479 invoked by uid 500); 3 Feb 2004 22:11:31 -0000 Delivered-To: apmail-httpd-dev-archive@httpd.apache.org Received: (qmail 92419 invoked by uid 500); 3 Feb 2004 22:11:31 -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 92381 invoked from network); 3 Feb 2004 22:11:30 -0000 Received: from unknown (HELO jupiter.hal-nine-zero-zero-zero.net) (217.160.171.50) by daedalus.apache.org with SMTP; 3 Feb 2004 22:11:30 -0000 Received: (qmail 30617 invoked from network); 3 Feb 2004 22:11:38 -0000 Received: from unknown (HELO news.perlig.de) (80.131.140.219) by jupiter.hal-nine-zero-zero-zero.net with SMTP; 3 Feb 2004 22:11:38 -0000 Date: Tue, 3 Feb 2004 23:11:34 +0100 From: =?ISO-8859-15?Q?Andr=E9?= Malo To: dev@httpd.apache.org Subject: Re: cvs commit: httpd-2.0/server core.c Message-Id: <20040203231134.4bde6bcf.nd@perlig.de> In-Reply-To: References: <20040125220339.91019.qmail@minotaur.apache.org> <6.0.2.0.2.20040203133039.049a8ec0@pop3.rowe-clan.net> Organization: TIMTOWTDI X-Mailer: Sylpheed version 0.9.7claws (GTK+ 1.2.10; i686-pc-linux-gnu) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit 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 * Cliff Woolley wrote: > On Tue, 3 Feb 2004, William A. Rowe, Jr. wrote: > > > Uhmmm, this isn't an MMN bump :) If you were adding this new > > structure *type* as a member of another structure (say as the last > > member of the conn_rec) and the structure grew (in such a way that > > folks could be blindly oblivious to the fact that conn_rec just got a > > bit bigger), that's an MMN bump. It's not the case here. > > I disagree. If you add a function to the API without bumping the MMN, > then how is a module that wants to use the new function if it exists and > yet still compile if it doesn't supposed to work? It can't. Yes, that's my understanding as well: major bumps break backwards compat and minor bumps keep forward compat. nd