since error bucket is private to httpd - hence the AP_ prefix.)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@95410
13f79535-47bb-0310-9956-
ffa450edef68
AP_DECLARE_DATA extern const apr_bucket_type_t ap_bucket_type_error;
+/**
+ * Determine if a bucket is an error bucket
+ * @param e The bucket to inspect
+ * @return true or false
+ */
+#define AP_BUCKET_IS_ERROR(e) (e->type == &ap_bucket_type_error)
+
/**
* Make the bucket passed in an error bucket
* @param b The bucket to make into an error bucket