Return-Path: Delivered-To: apmail-apr-cvs-archive@apr.apache.org Received: (qmail 5912 invoked by uid 500); 2 Jun 2002 23:08:17 -0000 Mailing-List: contact cvs-help@apr.apache.org; run by ezmlm Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: Reply-To: dev@apr.apache.org Delivered-To: mailing list cvs@apr.apache.org Received: (qmail 5890 invoked by uid 500); 2 Jun 2002 23:08:16 -0000 Delivered-To: apmail-apr-util-cvs@apache.org Reply-To: From: "Ryan Bloom" To: , Subject: RE: cvs commit: apr-util/include apr_buckets.h Date: Sun, 2 Jun 2002 00:42:30 -0700 Organization: Covalent Technologies Message-ID: <003f01c20a09$0d1b94d0$0a01230a@KOJ> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit X-Priority: 3 (Normal) X-MSMail-Priority: Normal X-Mailer: Microsoft Outlook, Build 10.0.3416 In-Reply-To: <20020602201752.11167.qmail@icarus.apache.org> X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 Importance: Normal X-Spam-Rating: daedalus.apache.org 1.6.2 0/1000/N > From: jwoolley@apache.org [mailto:jwoolley@apache.org] > > > - int is_metadata; > + enum { > + /** This bucket type represents actual data to send to the > client. */ > + APR_BUCKET_DATA = 0, > + /** This bucket type represents metadata. */ > + APR_BUCKET_METADATA = 1 > + } is_metadata; By turning this into an enum, you have removed the ability to extend this field. Ryan