aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2016-08-04 11:06:49 -0700
committerGravatar Mark D. Roth <roth@google.com>2016-08-04 11:06:49 -0700
commit7d9f276ea278313f6ba1930931b5dde14167b8ac (patch)
tree0a841b0a4b10fd81f24d3c1c737ab3f0624820f8 /src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c
parentf14effb6e421601639ef9a293f3f9b55a51e87ed (diff)
Change handshaker API to use a read buffer to pass leftover bytes read
between handshakers.
Diffstat (limited to 'src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c')
-rw-r--r--src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c b/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c
index ca435c25ce..b2c5e5b088 100644
--- a/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c
+++ b/src/core/ext/transport/chttp2/client/insecure/channel_create_posix.c
@@ -75,7 +75,7 @@ grpc_channel *grpc_insecure_channel_create_from_fd(
grpc_channel *channel = grpc_channel_create(
&exec_ctx, target, final_args, GRPC_CLIENT_DIRECT_CHANNEL, transport);
grpc_channel_args_destroy(final_args);
- grpc_chttp2_transport_start_reading(&exec_ctx, transport, NULL, 0);
+ grpc_chttp2_transport_start_reading(&exec_ctx, transport, NULL);
grpc_exec_ctx_finish(&exec_ctx);