aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/channel
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-03-02 16:39:39 +0000
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-03-02 16:39:39 +0000
commitf2350183be15f1ba2260e85e7c972cbee016f0d2 (patch)
tree1f61cc3807ac25dc6ec2ccbc4c9fc94ff6ceaaf4 /src/core/channel
parent748fe3ffe29a97a5f3dc1ca8daac9c9e18ac3cd0 (diff)
Make debugging a little easier
Diffstat (limited to 'src/core/channel')
-rw-r--r--src/core/channel/connected_channel.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/channel/connected_channel.c b/src/core/channel/connected_channel.c
index fa18655164..62611e08f3 100644
--- a/src/core/channel/connected_channel.c
+++ b/src/core/channel/connected_channel.c
@@ -48,12 +48,12 @@
/* the protobuf library will (by default) start warning at 100megs */
#define DEFAULT_MAX_MESSAGE_LENGTH (100 * 1024 * 1024)
-typedef struct {
+typedef struct connected_channel_channel_data {
grpc_transport *transport;
gpr_uint32 max_message_length;
} channel_data;
-typedef struct {
+typedef struct connected_channel_call_data {
grpc_call_element *elem;
grpc_stream_op_buffer outgoing_sopb;