Skip to content
Snippets Groups Projects
Commit 42b239f1 authored by Craig Tiller's avatar Craig Tiller
Browse files

Docs

parent b6b3015a
No related branches found
No related tags found
No related merge requests found
...@@ -56,6 +56,8 @@ struct grpc_client_setup { ...@@ -56,6 +56,8 @@ struct grpc_client_setup {
gpr_cv cv; gpr_cv cv;
grpc_client_setup_request *active_request; grpc_client_setup_request *active_request;
int refs; int refs;
/** The set of pollsets that are currently interested in this
connection being established */
grpc_pollset_set interested_parties; grpc_pollset_set interested_parties;
}; };
...@@ -92,7 +94,6 @@ static void setup_initiate(grpc_transport_setup *sp) { ...@@ -92,7 +94,6 @@ static void setup_initiate(grpc_transport_setup *sp) {
int in_alarm = 0; int in_alarm = 0;
r->setup = s; r->setup = s;
/* TODO(klempner): Actually set a deadline */
r->deadline = gpr_time_add(gpr_now(), gpr_time_from_seconds(60)); r->deadline = gpr_time_add(gpr_now(), gpr_time_from_seconds(60));
gpr_mu_lock(&s->mu); gpr_mu_lock(&s->mu);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment