aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/transport/byte_stream.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-12-09 19:42:22 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-12-09 19:42:22 -0800
commit3b66ab9f9e16dae7d006e3abac947e11a45d9002 (patch)
tree0bfa9fbca1dd028897ddf3b0ee7eca0390168b16 /src/core/transport/byte_stream.h
parentf9263bcfcd21efce71e90a81be96e58dd03686fc (diff)
Window overflow test
Diffstat (limited to 'src/core/transport/byte_stream.h')
-rw-r--r--src/core/transport/byte_stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/transport/byte_stream.h b/src/core/transport/byte_stream.h
index c94d8ff275..558147f6f0 100644
--- a/src/core/transport/byte_stream.h
+++ b/src/core/transport/byte_stream.h
@@ -52,7 +52,7 @@ struct grpc_byte_stream {
int (*next)(grpc_exec_ctx *exec_ctx, grpc_byte_stream *byte_stream,
gpr_slice *slice, size_t max_size_hint,
grpc_closure *on_complete);
- void (*destroy)(grpc_byte_stream *byte_stream);
+ void (*destroy)(grpc_exec_ctx *exec_ctx, grpc_byte_stream *byte_stream);
};
/* returns 1 if the bytes are available immediately (in which case
@@ -72,7 +72,7 @@ int grpc_byte_stream_next(grpc_exec_ctx *exec_ctx,
grpc_byte_stream *byte_stream, gpr_slice *slice,
size_t max_size_hint, grpc_closure *on_complete);
-void grpc_byte_stream_destroy(grpc_byte_stream *byte_stream);
+void grpc_byte_stream_destroy(grpc_exec_ctx *exec_ctx, grpc_byte_stream *byte_stream);
/* grpc_byte_stream that wraps a slice buffer */
typedef struct grpc_slice_buffer_stream {