aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/tcp_client.h
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2016-09-23 12:05:34 -0700
committerGravatar Craig Tiller <ctiller@google.com>2016-09-23 12:05:34 -0700
commit86958768b462c5428cf6607508895d3a44cd3d16 (patch)
tree18fa88c9174033fb4356d0c1876d531c4471579b /src/core/lib/iomgr/tcp_client.h
parent45881861dc6336b4387ebd894fa7193de475e594 (diff)
Buffer pools compile
Diffstat (limited to 'src/core/lib/iomgr/tcp_client.h')
-rw-r--r--src/core/lib/iomgr/tcp_client.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/core/lib/iomgr/tcp_client.h b/src/core/lib/iomgr/tcp_client.h
index 04e4108b35..b854e5aadc 100644
--- a/src/core/lib/iomgr/tcp_client.h
+++ b/src/core/lib/iomgr/tcp_client.h
@@ -39,6 +39,8 @@
#include "src/core/lib/iomgr/pollset_set.h"
#include "src/core/lib/iomgr/sockaddr.h"
+#define GRPC_ARG_TCP_READ_CHUNK_SIZE "grpc.experimental.tcp_read_chunk_size"
+
/* Asynchronously connect to an address (specified as (addr, len)), and call
cb with arg and the completed connection when done (or call cb with arg and
NULL on failure).
@@ -47,7 +49,7 @@
void grpc_tcp_client_connect(grpc_exec_ctx *exec_ctx, grpc_closure *on_connect,
grpc_endpoint **endpoint,
grpc_pollset_set *interested_parties,
- grpc_buffer_pool *buffer_pool,
+ const grpc_channel_args *channel_args,
const struct sockaddr *addr, size_t addr_len,
gpr_timespec deadline);