Searched refs:max_version (Results 1 – 4 of 4) sorted by relevance
/apps/ |
A D | ciphers.c | 106 int min_version = 0, max_version = 0; in ciphers_main() local 137 max_version = SSL3_VERSION; in ciphers_main() 141 max_version = TLS1_VERSION; in ciphers_main() 145 max_version = TLS1_1_VERSION; in ciphers_main() 149 max_version = TLS1_2_VERSION; in ciphers_main() 153 max_version = TLS1_3_VERSION; in ciphers_main() 194 if (SSL_CTX_set_max_proto_version(ctx, max_version) == 0) in ciphers_main()
|
A D | s_time.c | 130 int min_version = 0, max_version = 0, ver, buf_len, fd; in s_time_main() local 211 max_version = SSL3_VERSION; in s_time_main() 215 max_version = TLS1_VERSION; in s_time_main() 219 max_version = TLS1_1_VERSION; in s_time_main() 223 max_version = TLS1_2_VERSION; in s_time_main() 227 max_version = TLS1_3_VERSION; in s_time_main() 249 if (SSL_CTX_set_max_proto_version(ctx, max_version) == 0) in s_time_main()
|
A D | s_client.c | 947 int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0; in s_client_main() local 1310 max_version = SSL3_VERSION; in s_client_main() 1319 max_version = TLS1_3_VERSION; in s_client_main() 1328 max_version = TLS1_2_VERSION; in s_client_main() 1337 max_version = TLS1_1_VERSION; in s_client_main() 1346 max_version = TLS1_VERSION; in s_client_main() 1365 max_version = DTLS1_VERSION; in s_client_main() 1375 max_version = DTLS1_2_VERSION; in s_client_main() 1385 max_version = 0; in s_client_main() 1862 if (max_version != 0 in s_client_main() [all …]
|
A D | s_server.c | 1290 int min_version = 0, max_version = 0, prot_opt = 0, no_prot_opt = 0; in s_server_main() local 1751 max_version = SSL3_VERSION; in s_server_main() 1755 max_version = TLS1_3_VERSION; in s_server_main() 1759 max_version = TLS1_2_VERSION; in s_server_main() 1763 max_version = TLS1_1_VERSION; in s_server_main() 1767 max_version = TLS1_VERSION; in s_server_main() 1779 max_version = DTLS1_VERSION; in s_server_main() 1787 max_version = DTLS1_2_VERSION; in s_server_main() 2177 if (max_version != 0 in s_server_main() 2178 && SSL_CTX_set_max_proto_version(ctx, max_version) == 0) in s_server_main()
|
Completed in 17 milliseconds