From 54e58e970c36602b06ec17a07e92ddd80a7261f3 Mon Sep 17 00:00:00 2001 From: Steve Kim Date: Tue, 24 Sep 2024 11:17:28 -0700 Subject: [PATCH] remove redundant secure_transport_ctx --- source/darwin/secure_transport_tls_channel_handler.c | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/source/darwin/secure_transport_tls_channel_handler.c b/source/darwin/secure_transport_tls_channel_handler.c index 24833ca7f..d1ffec7c6 100644 --- a/source/darwin/secure_transport_tls_channel_handler.c +++ b/source/darwin/secure_transport_tls_channel_handler.c @@ -847,16 +847,6 @@ static struct aws_channel_handler_vtable s_handler_vtable = { .gather_statistics = s_gather_statistics, }; -struct secure_transport_ctx { - struct aws_tls_ctx ctx; - CFAllocatorRef wrapped_allocator; - CFArrayRef certs; - CFArrayRef ca_cert; - enum aws_tls_versions minimum_version; - struct aws_string *alpn_list; - bool verify_peer; -}; - static struct aws_channel_handler *s_tls_handler_new( struct aws_allocator *allocator, struct aws_tls_connection_options *options,