diff options
author | 2017-11-16 11:37:57 -0800 | |
---|---|---|
committer | 2017-12-04 18:01:47 -0800 | |
commit | 53d5503fac819f2474fb317fc34f20ae230fbf8f (patch) | |
tree | a24b4402abae1feb06dbc2cc1680b9f0055c7113 /test | |
parent | 6fa206de8f8a1444fff19a84945a424c0cabb41c (diff) |
Pass a pollset_set to some client handshakers.
Diffstat (limited to 'test')
-rw-r--r-- | test/core/security/ssl_server_fuzzer.cc | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/test/core/security/ssl_server_fuzzer.cc b/test/core/security/ssl_server_fuzzer.cc index bbb2f6013e..d83ebb18d2 100644 --- a/test/core/security/ssl_server_fuzzer.cc +++ b/test/core/security/ssl_server_fuzzer.cc @@ -92,8 +92,9 @@ extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { grpc_handshake_manager* handshake_mgr = grpc_handshake_manager_create(); grpc_server_security_connector_add_handshakers(&exec_ctx, sc, handshake_mgr); grpc_handshake_manager_do_handshake( - &exec_ctx, handshake_mgr, mock_endpoint, nullptr /* channel_args */, - deadline, nullptr /* acceptor */, on_handshake_done, &state); + &exec_ctx, handshake_mgr, nullptr /* interested_parties */, mock_endpoint, + nullptr /* channel_args */, deadline, nullptr /* acceptor */, + on_handshake_done, &state); grpc_exec_ctx_flush(&exec_ctx); // If the given string happens to be part of the correct client hello, the |