summaryrefslogtreecommitdiffstats
path: root/contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c
diff options
context:
space:
mode:
authorrobot-contrib <[email protected]>2023-01-13 11:39:51 +0300
committerrobot-contrib <[email protected]>2023-01-13 11:39:51 +0300
commit7c44ed5547e5ffd0dfcea1db3c1ac97a4b5f901a (patch)
tree78a67c079d402182fdbd6c13105281828ec64750 /contrib/restricted/aws/aws-c-io/source/tls_channel_handler.c
parent1d7ce7e954244f52dc1e3e0a4eb0ad2adc3ea67b (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.c6
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,