diff options
author | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-03-02 13:54:14 -0800 |
---|---|---|
committer | Nicolas Noble <nicolasnoble@users.noreply.github.com> | 2015-03-02 13:54:14 -0800 |
commit | 961141002ae30ec1dbaf2725c59b3ffe4cde3e0f (patch) | |
tree | 53d775884a0039c5d4dffd27d1b5cce8c6a8ce41 /src/core/channel/connected_channel.c | |
parent | b9518217f057c6fd7c9053e096390257c9723f0b (diff) | |
parent | fa9b1a415e2daa79e5cf5050432521a4515a0938 (diff) |
Merge pull request #912 from ctiller/disconnect
Deflake fling_test
Diffstat (limited to 'src/core/channel/connected_channel.c')
-rw-r--r-- | src/core/channel/connected_channel.c | 4 |
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; |