Skip to content

Commit a89718b

Browse files
authored
Re-enable TLS-1.3 in the OpenSSL backend.
1 parent a9351e1 commit a89718b

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

ixwebsocket/IXSocketOpenSSL.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -219,11 +219,6 @@ namespace ix
219219

220220
int options = SSL_OP_NO_SSLv2 | SSL_OP_NO_SSLv3 | SSL_OP_CIPHER_SERVER_PREFERENCE;
221221

222-
#ifdef SSL_OP_NO_TLSv1_3
223-
// (partially?) work around hang in openssl 1.1.1b, by disabling TLS V1.3
224-
// https://github.com/openssl/openssl/issues/7967
225-
options |= SSL_OP_NO_TLSv1_3;
226-
#endif
227222
SSL_CTX_set_options(ctx, options);
228223
}
229224
return ctx;

0 commit comments

Comments
 (0)