> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > > > - 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
