@@ -184,6 +184,9 @@ conf_parser_t fr_tls_server_config[] = {
184184 { FR_CONF_OFFSET ("disable_single_dh_use" , fr_tls_conf_t , disable_single_dh_use ) },
185185
186186 { FR_CONF_OFFSET ("cipher_list" , fr_tls_conf_t , cipher_list ) },
187+ #ifdef TLS1_3_VERSION
188+ { FR_CONF_OFFSET ("cipher_suites" , fr_tls_conf_t , cipher_suites ) },
189+ #endif
187190 { FR_CONF_OFFSET ("cipher_server_preference" , fr_tls_conf_t , cipher_server_preference ), .dflt = "yes" },
188191#ifdef SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS
189192 { FR_CONF_OFFSET ("allow_renegotiation" , fr_tls_conf_t , allow_renegotiation ), .dflt = "no" },
@@ -232,6 +235,9 @@ conf_parser_t fr_tls_client_config[] = {
232235 { FR_CONF_OFFSET ("fragment_size" , fr_tls_conf_t , fragment_size ), .dflt = "1024" },
233236
234237 { FR_CONF_OFFSET ("cipher_list" , fr_tls_conf_t , cipher_list ) },
238+ #ifdef TLS1_3_VERSION
239+ { FR_CONF_OFFSET ("cipher_suites" , fr_tls_conf_t , cipher_suites ) },
240+ #endif
235241
236242#ifndef OPENSSL_NO_ECDH
237243 { FR_CONF_OFFSET ("ecdh_curve" , fr_tls_conf_t , ecdh_curve ), .dflt = "prime256v1" },
0 commit comments