From e6c04271149fac03bc553092a5e22e87f98d3a81 Mon Sep 17 00:00:00 2001 From: Steve Kim Date: Tue, 16 Jul 2024 13:43:32 -0700 Subject: [PATCH] reorganize --- include/aws/io/tls_channel_handler.h | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/include/aws/io/tls_channel_handler.h b/include/aws/io/tls_channel_handler.h index c980d6232..18310bd5b 100644 --- a/include/aws/io/tls_channel_handler.h +++ b/include/aws/io/tls_channel_handler.h @@ -245,22 +245,22 @@ struct aws_tls_ctx_options { */ struct aws_byte_buf pkcs12_password; + /** + * When adding items to the keychain, SecItem allows the setting of attributes + * that control various options and settings related to access of the items. This + * struct contains the various attributes we currently support. + */ + struct aws_secitem_options *secitem_options; + # if !defined(AWS_OS_IOS) /** * On Apple OS you can also use a custom keychain instead of * the default keychain of the account. */ struct aws_string *keychain_path; + # endif /* !AWS_OS_IOS */ -# if defined(AWS_OS_IOS) - /** - * When adding items to the keychain, SecItem allows the setting of attributes - * that control various options and settings related to access of the items. This - * struct contains the various attributes we currently support. - */ - struct aws_secitem_options *secitem_options; -# endif /* AWS_OS_IOS*/ #endif /* __APPLE__ */