summaryrefslogtreecommitdiff
path: root/buckets/apr_buckets.c
diff options
context:
space:
mode:
authorgstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2000-12-08 11:03:33 +0000
committergstein <gstein@13f79535-47bb-0310-9956-ffa450edef68>2000-12-08 11:03:33 +0000
commit11de0894191ce2d677fcd2b45da98944cd766972 (patch)
tree8749a15f068cfb0b43a4c4e3904a8aa4cb055c1f /buckets/apr_buckets.c
parent4fd399c92b2f76f075979510998f2d9ac376b9c0 (diff)
downloadlibapr-util-11de0894191ce2d677fcd2b45da98944cd766972.tar.gz
Add a copy() function to the buckets. Also adds two utility functions:
ap_bucket_split_any() and ap_bucket_copy_any(). Submitted by: Cliff Woolley <cliffwoolley@yahoo.com> git-svn-id: http://svn.apache.org/repos/asf/apr/apr-util/trunk@57969 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'buckets/apr_buckets.c')
-rw-r--r--buckets/apr_buckets.c5
1 files changed, 4 insertions, 1 deletions
diff --git a/buckets/apr_buckets.c b/buckets/apr_buckets.c
index 5d5b354b..df65dc19 100644
--- a/buckets/apr_buckets.c
+++ b/buckets/apr_buckets.c
@@ -241,7 +241,10 @@ APR_DECLARE_NONSTD(apr_status_t) ap_bucket_split_notimpl(ap_bucket *data, apr_of
{
return APR_ENOTIMPL;
}
-
+APR_DECLARE_NONSTD(apr_status_t) ap_bucket_copy_notimpl(ap_bucket *e, ap_bucket **c)
+{
+ return APR_ENOTIMPL;
+}
APR_DECLARE_NONSTD(void) ap_bucket_destroy_notimpl(void *data)
{
return;