diff options
author | Dan Born <dborn@google.com> | 2017-11-16 11:37:57 -0800 |
---|---|---|
committer | Dan Born <dborn@google.com> | 2017-12-04 18:01:47 -0800 |
commit | 53d5503fac819f2474fb317fc34f20ae230fbf8f (patch) | |
tree | a24b4402abae1feb06dbc2cc1680b9f0055c7113 /src/core/lib/http | |
parent | 6fa206de8f8a1444fff19a84945a424c0cabb41c (diff) |
Pass a pollset_set to some client handshakers.
Diffstat (limited to 'src/core/lib/http')
-rw-r--r-- | src/core/lib/http/httpcli_security_connector.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/core/lib/http/httpcli_security_connector.cc b/src/core/lib/http/httpcli_security_connector.cc index d25fba538f..dfcaee702b 100644 --- a/src/core/lib/http/httpcli_security_connector.cc +++ b/src/core/lib/http/httpcli_security_connector.cc @@ -191,8 +191,9 @@ static void ssl_handshake(grpc_exec_ctx* exec_ctx, void* arg, c->handshake_mgr = grpc_handshake_manager_create(); grpc_handshakers_add(exec_ctx, HANDSHAKER_CLIENT, &args, c->handshake_mgr); grpc_handshake_manager_do_handshake( - exec_ctx, c->handshake_mgr, tcp, nullptr /* channel_args */, deadline, - nullptr /* acceptor */, on_handshake_done, c /* user_data */); + exec_ctx, c->handshake_mgr, nullptr /* interested_parties */, tcp, + nullptr /* channel_args */, deadline, nullptr /* acceptor */, + on_handshake_done, c /* user_data */); GRPC_SECURITY_CONNECTOR_UNREF(exec_ctx, &sc->base, "httpcli"); } |