On 1 Jul 2002 [EMAIL PROTECTED] wrote: > jerenkrantz 2002/07/01 08:47:54 > > Modified: include serf_buckets.h > Log: > The authentication and header buckets need a pool so that they can allocate > memory on bucket_read >
You can't have metadata buckets that return data on an apr_bucket_read() call. apr_bucket_read() is only supposed to return *data*, and the data returned should be of length at most e->length (which is zero for metadata buckets). If you want to get the metadata out, you need a type-specific call. --Cliff
