mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-02-20 02:53:03 -05:00
TLS: Allow TLS v1.2 to be negotiated
Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
f0b1c5f7b3
commit
4b919be289
@ -99,6 +99,10 @@ static int tls_process_client_hello(struct tlsv1_server *conn, u8 ct,
|
||||
|
||||
if (TLS_VERSION == TLS_VERSION_1)
|
||||
conn->rl.tls_version = TLS_VERSION_1;
|
||||
#ifdef CONFIG_TLSV12
|
||||
else if (conn->client_version >= TLS_VERSION_1_2)
|
||||
conn->rl.tls_version = TLS_VERSION_1_2;
|
||||
#endif /* CONFIG_TLSV12 */
|
||||
else if (conn->client_version > TLS_VERSION_1_1)
|
||||
conn->rl.tls_version = TLS_VERSION_1_1;
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user