diff options
author | Mark D. Roth <roth@google.com> | 2016-11-04 12:49:49 -0700 |
---|---|---|
committer | Mark D. Roth <roth@google.com> | 2016-11-04 12:49:49 -0700 |
commit | 78afd778009a2af0fcc6c05b5739e5bc457c9d6f (patch) | |
tree | 1258901a64f27963ebf29b58e3149252cb5a8724 /src/core/lib | |
parent | 9a8dbc406e1b6c6612837056bee601d88c910747 (diff) |
clang-format
Diffstat (limited to 'src/core/lib')
-rw-r--r-- | src/core/lib/security/transport/client_auth_filter.c | 17 |
1 files changed, 5 insertions, 12 deletions
diff --git a/src/core/lib/security/transport/client_auth_filter.c b/src/core/lib/security/transport/client_auth_filter.c index 3a96af2c69..d075ed037b 100644 --- a/src/core/lib/security/transport/client_auth_filter.c +++ b/src/core/lib/security/transport/client_auth_filter.c @@ -341,15 +341,8 @@ static void destroy_channel_elem(grpc_exec_ctx *exec_ctx, GRPC_AUTH_CONTEXT_UNREF(chand->auth_context, "client_auth_filter"); } -const grpc_channel_filter grpc_client_auth_filter = {auth_start_transport_op, - grpc_channel_next_op, - sizeof(call_data), - init_call_elem, - set_pollset_or_pollset_set, - destroy_call_elem, - sizeof(channel_data), - init_channel_elem, - destroy_channel_elem, - grpc_call_next_get_peer, - grpc_channel_next_get_info, - "client-auth"}; +const grpc_channel_filter grpc_client_auth_filter = { + auth_start_transport_op, grpc_channel_next_op, sizeof(call_data), + init_call_elem, set_pollset_or_pollset_set, destroy_call_elem, + sizeof(channel_data), init_channel_elem, destroy_channel_elem, + grpc_call_next_get_peer, grpc_channel_next_get_info, "client-auth"}; |