diff options
author | robot-contrib <[email protected]> | 2023-01-13 11:39:51 +0300 |
---|---|---|
committer | robot-contrib <[email protected]> | 2023-01-13 11:39:51 +0300 |
commit | 7c44ed5547e5ffd0dfcea1db3c1ac97a4b5f901a (patch) | |
tree | 78a67c079d402182fdbd6c13105281828ec64750 /contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c | |
parent | 1d7ce7e954244f52dc1e3e0a4eb0ad2adc3ea67b (diff) |
Update contrib/restricted/aws/aws-c-io to 0.13.12
Diffstat (limited to 'contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c')
-rw-r--r-- | contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c b/contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c index 3a955969849..b6675774561 100644 --- a/contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c +++ b/contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c @@ -459,6 +459,12 @@ void aws_tls_ctx_options_set_minimum_tls_version( options->minimum_tls_version = minimum_tls_version; } +void aws_tls_ctx_options_set_tls_cipher_preference( + struct aws_tls_ctx_options *options, + enum aws_tls_cipher_pref cipher_pref) { + options->cipher_pref = cipher_pref; +} + int aws_tls_ctx_options_override_default_trust_store_from_path( struct aws_tls_ctx_options *options, const char *ca_path, |