diff options
author | Yihua Zhang <yihuaz@google.com> | 2018-10-05 10:17:09 -0700 |
---|---|---|
committer | Yihua Zhang <yihuaz@google.com> | 2018-10-05 10:17:09 -0700 |
commit | 70a6c790b97401eca66050d7463880efb7412296 (patch) | |
tree | fcb55c13c740212d1d4565d9b9a15af2470b0cb2 /src/core/lib/security/transport | |
parent | 285d4ef1be44a15235b734a1e476fb8af4d71c79 (diff) |
Add changes in #16782
Diffstat (limited to 'src/core/lib/security/transport')
-rw-r--r-- | src/core/lib/security/transport/security_handshaker.cc | 16 |
1 files changed, 4 insertions, 12 deletions
diff --git a/src/core/lib/security/transport/security_handshaker.cc b/src/core/lib/security/transport/security_handshaker.cc index f3bdf573b3..4d6b133809 100644 --- a/src/core/lib/security/transport/security_handshaker.cc +++ b/src/core/lib/security/transport/security_handshaker.cc @@ -480,12 +480,8 @@ static void client_handshaker_factory_add_handshakers( grpc_channel_security_connector* security_connector = reinterpret_cast<grpc_channel_security_connector*>( grpc_security_connector_find_in_args(args)); - if (security_connector != nullptr) { - grpc_security_connector_set_interested_parties(&security_connector->base, - interested_parties); - } - grpc_channel_security_connector_add_handshakers(security_connector, - handshake_mgr); + grpc_channel_security_connector_add_handshakers( + security_connector, interested_parties, handshake_mgr); } static void server_handshaker_factory_add_handshakers( @@ -495,12 +491,8 @@ static void server_handshaker_factory_add_handshakers( grpc_server_security_connector* security_connector = reinterpret_cast<grpc_server_security_connector*>( grpc_security_connector_find_in_args(args)); - if (security_connector != nullptr) { - grpc_security_connector_set_interested_parties(&security_connector->base, - interested_parties); - } - grpc_server_security_connector_add_handshakers(security_connector, - handshake_mgr); + grpc_server_security_connector_add_handshakers( + security_connector, interested_parties, handshake_mgr); } static void handshaker_factory_destroy( |