13 lines
455 B
Diff
13 lines
455 B
Diff
diff --git a/src/crypto/tls_openssl.c b/src/crypto/tls_openssl.c
|
|
index 23ac64b48..cc8d159e0 100644
|
|
--- a/src/crypto/tls_openssl.c
|
|
+++ b/src/crypto/tls_openssl.c
|
|
@@ -1577,6 +1577,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);
|
|
|
|
conn->ssl_in = BIO_new(BIO_s_mem());
|