mirror of https://gitee.com/openkylin/wpa.git
Disable the session ticket TLS extension.
Gbp-Pq: Name session-ticket.patch
This commit is contained in:
parent
e5c63b5ab3
commit
1e7b193dc1
|
@ -1584,6 +1584,7 @@ struct tls_connection * tls_connection_init(void *ssl_ctx)
|
|||
#ifdef SSL_OP_NO_COMPRESSION
|
||||
options |= SSL_OP_NO_COMPRESSION;
|
||||
#endif /* SSL_OP_NO_COMPRESSION */
|
||||
options |= SSL_OP_NO_TICKET;
|
||||
SSL_set_options(conn->ssl, options);
|
||||
#ifdef SSL_OP_ENABLE_MIDDLEBOX_COMPAT
|
||||
/* Hopefully there is no need for middlebox compatibility mechanisms
|
||||
|
|
Loading…
Reference in New Issue