Author: rhuijben
Date: Sun Nov 1 16:21:33 2015
New Revision: 1711828
URL: http://svn.apache.org/viewvc?rev=1711828&view=rev
Log:
* buckets/http2_frame_buckets.c
(serf_bucket_http2_frame_within_frame): Remove unused function.
* protocols/http2_buckets.h
(serf__bucket_http2_frame_within_frame): Removed not matching prototype.
Modified:
serf/trunk/buckets/http2_frame_buckets.c
serf/trunk/protocols/http2_buckets.h
Modified: serf/trunk/buckets/http2_frame_buckets.c
URL:
http://svn.apache.org/viewvc/serf/trunk/buckets/http2_frame_buckets.c?rev=1711828&r1=1711827&r2=1711828&view=diff
==============================================================================
--- serf/trunk/buckets/http2_frame_buckets.c (original)
+++ serf/trunk/buckets/http2_frame_buckets.c Sun Nov 1 16:21:33 2015
@@ -696,17 +696,6 @@ serf__bucket_http2_frame_create(serf_buc
return serf_bucket_create(&serf_bucket_type__http2_frame, alloc, ctx);
}
-
-int
-serf_bucket_http2_frame_within_frame(serf_bucket_t *bucket)
-{
- const char *data;
- apr_size_t len;
- apr_status_t status = serf_bucket_peek(bucket, &data, &len);
-
- return APR_STATUS_IS_EOF(status);
-}
-
static apr_status_t
http2_prepare_frame(serf_bucket_t *bucket)
{
Modified: serf/trunk/protocols/http2_buckets.h
URL:
http://svn.apache.org/viewvc/serf/trunk/protocols/http2_buckets.h?rev=1711828&r1=1711827&r2=1711828&view=diff
==============================================================================
--- serf/trunk/protocols/http2_buckets.h (original)
+++ serf/trunk/protocols/http2_buckets.h Sun Nov 1 16:21:33 2015
@@ -221,9 +221,6 @@ serf__bucket_http2_frame_create(serf_buc
void *alloc_window_baton,
serf_bucket_alloc_t *alloc);
-int
-serf__bucket_http2_frame_within_frame(serf_bucket_t *bucket);
-
/* ==================================================================== */
#ifdef __cplusplus