aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/security
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2017-07-12 07:18:26 -0700
committerGravatar GitHub <noreply@github.com>2017-07-12 07:18:26 -0700
commitca0b8084bd06001be35a66a47357e81df8ef583a (patch)
tree86b6e2c0a164fdd802b0db9ce50bfe7c050e6305 /test/core/security
parente908821d242c4435ab5973a824b48ad544763ce3 (diff)
parent4318df0571de857025c10e6d6c3ba46ceef8126e (diff)
Merge pull request #11409 from annasapek/asynch-tsi-fake-handshaker
Update tsi_fake_handshaker to implement the asynchronous TSI
Diffstat (limited to 'test/core/security')
-rw-r--r--test/core/security/secure_endpoint_test.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/test/core/security/secure_endpoint_test.c b/test/core/security/secure_endpoint_test.c
index fd8af2f152..7ecd947e1f 100644
--- a/test/core/security/secure_endpoint_test.c
+++ b/test/core/security/secure_endpoint_test.c
@@ -38,8 +38,10 @@ static grpc_pollset *g_pollset;
static grpc_endpoint_test_fixture secure_endpoint_create_fixture_tcp_socketpair(
size_t slice_size, grpc_slice *leftover_slices, size_t leftover_nslices) {
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
- tsi_frame_protector *fake_read_protector = tsi_create_fake_protector(NULL);
- tsi_frame_protector *fake_write_protector = tsi_create_fake_protector(NULL);
+ tsi_frame_protector *fake_read_protector =
+ tsi_create_fake_frame_protector(NULL);
+ tsi_frame_protector *fake_write_protector =
+ tsi_create_fake_frame_protector(NULL);
grpc_endpoint_test_fixture f;
grpc_endpoint_pair tcp;