aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/core/channel/client_setup.c
diff options
context:
space:
mode:
authorGravatar Craig Tiller <ctiller@google.com>2015-05-08 09:59:51 -0700
committerGravatar Craig Tiller <ctiller@google.com>2015-05-08 09:59:51 -0700
commit8ed24e205c1596a179029d0d488ce57754c44827 (patch)
tree7ad8d14d9af20082ea5ab073da24741754523b09 /src/core/channel/client_setup.c
parent928cd7710f6289586729f19488d275d02284601c (diff)
Plumb pollset_set through to tcp setup
Diffstat (limited to 'src/core/channel/client_setup.c')
-rw-r--r--src/core/channel/client_setup.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/channel/client_setup.c b/src/core/channel/client_setup.c
index 3d0f48696c..8234ea2438 100644
--- a/src/core/channel/client_setup.c
+++ b/src/core/channel/client_setup.c
@@ -69,6 +69,11 @@ gpr_timespec grpc_client_setup_request_deadline(grpc_client_setup_request *r) {
return r->deadline;
}
+grpc_pollset_set *grpc_client_setup_get_interested_parties(
+ grpc_client_setup_request *r) {
+ return r->interested_parties;
+}
+
static void destroy_setup(grpc_client_setup *s) {
gpr_mu_destroy(&s->mu);
gpr_cv_destroy(&s->cv);