diff options
author | jiangtaoli2016 <jiangtao@google.com> | 2017-08-07 12:44:49 -0700 |
---|---|---|
committer | jiangtaoli2016 <jiangtao@google.com> | 2017-08-07 13:33:37 -0700 |
commit | 32f66e8a8111722f3ffa96052874d1a5af69e4fa (patch) | |
tree | 30c881d107f3fd76cc3be050a1007c5983994ebd /src/core | |
parent | 0211cfb2777265d4d4d8ed36c76d3130bffe7756 (diff) |
Update build rule
Diffstat (limited to 'src/core')
-rw-r--r-- | src/core/tsi/transport_security_grpc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/tsi/transport_security_grpc.c b/src/core/tsi/transport_security_grpc.c index ab2b6ddd54..5bcfdfa61f 100644 --- a/src/core/tsi/transport_security_grpc.c +++ b/src/core/tsi/transport_security_grpc.c @@ -20,7 +20,7 @@ /* This method creates a tsi_zero_copy_grpc_protector object. */ tsi_result tsi_handshaker_result_create_zero_copy_grpc_protector( - const tsi_handshaker_result *self, size_t *max_protected_frame_size, + const tsi_handshaker_result *self, size_t *max_output_protected_frame_size, tsi_zero_copy_grpc_protector **protector) { if (self == NULL || self->vtable == NULL || protector == NULL) { return TSI_INVALID_ARGUMENT; @@ -29,7 +29,7 @@ tsi_result tsi_handshaker_result_create_zero_copy_grpc_protector( return TSI_UNIMPLEMENTED; } return self->vtable->create_zero_copy_grpc_protector( - self, max_protected_frame_size, protector); + self, max_output_protected_frame_size, protector); } /* --- tsi_zero_copy_grpc_protector common implementation. --- |