From 7eedb5fb44d5a38cb3ba059d6983e95128b97d36 Mon Sep 17 00:00:00 2001 From: Ping Yu Date: Mon, 27 Aug 2018 09:07:13 -0400 Subject: add option to allow user to set ciphers Orignal code hard code TLS ciphers, and this patch allows user to set ciphers via CLI, so that user can perform the TLS testing without re-building the code. Change-Id: I0d497f6d906af25bc7a33cee5747f9a1d63e0683 Signed-off-by: Ping Yu --- src/plugins/tlsopenssl/tls_openssl.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/plugins/tlsopenssl/tls_openssl.h') diff --git a/src/plugins/tlsopenssl/tls_openssl.h b/src/plugins/tlsopenssl/tls_openssl.h index a524da74cee..e802f4523ea 100644 --- a/src/plugins/tlsopenssl/tls_openssl.h +++ b/src/plugins/tlsopenssl/tls_openssl.h @@ -46,6 +46,7 @@ typedef struct openssl_main_ openssl_listen_ctx_t *lctx_pool; X509_STORE *cert_store; + u8 *ciphers; int engine_init; int async; } openssl_main_t; -- cgit 1.2.3-korg