aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/lib/iomgr/tcp_client.h
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-10-10 16:02:43 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-10-10 16:02:43 -0700
commit929f4c652f5b57de016cb2cafbf81139cae30e3f (patch)
tree596b41acb48b3e0b22a064532b08e834e854dd8f /src/core/lib/iomgr/tcp_client.h
parent602edbba8cf03279b3dc2e027ea07660332f806e (diff)
Add tos configuration in channel args
Diffstat (limited to 'src/core/lib/iomgr/tcp_client.h')
-rw-r--r--src/core/lib/iomgr/tcp_client.h18
1 files changed, 15 insertions, 3 deletions
diff --git a/src/core/lib/iomgr/tcp_client.h b/src/core/lib/iomgr/tcp_client.h
index a07e0b9f0c..215c2fbe5b 100644
--- a/src/core/lib/iomgr/tcp_client.h
+++ b/src/core/lib/iomgr/tcp_client.h
@@ -34,11 +34,25 @@
#ifndef GRPC_CORE_LIB_IOMGR_TCP_CLIENT_H
#define GRPC_CORE_LIB_IOMGR_TCP_CLIENT_H
+#include <grpc/impl/codegen/grpc_types.h>
#include <grpc/support/time.h>
#include "src/core/lib/iomgr/endpoint.h"
#include "src/core/lib/iomgr/pollset_set.h"
#include "src/core/lib/iomgr/sockaddr.h"
+/** arguments for a tcp client connection */
+typedef struct {
+ /** set of pollsets interested in this connection */
+ grpc_pollset_set *interested_parties;
+ /** address to connect to */
+ const struct sockaddr *addr;
+ size_t addr_len;
+ /** deadline for connection */
+ gpr_timespec deadline;
+ /** channel arguments */
+ const grpc_channel_args *channel_args;
+} grpc_tcp_client_connect_args;
+
/* 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).
@@ -46,8 +60,6 @@
in this connection being established (in order to continue their work) */
void grpc_tcp_client_connect(grpc_exec_ctx *exec_ctx, grpc_closure *on_connect,
grpc_endpoint **endpoint,
- grpc_pollset_set *interested_parties,
- const struct sockaddr *addr, size_t addr_len,
- gpr_timespec deadline);
+ const grpc_tcp_client_connect_args *args);
#endif /* GRPC_CORE_LIB_IOMGR_TCP_CLIENT_H */