mirror of
https://github.com/coturn/coturn.git
synced 2025-11-02 07:50:59 +01:00
Fix TLS1.3 support
Fix TLS1.3 support `TLSv1_3_SUPPORTED` was not defined so TLS1.3 was not enabled properly
This commit is contained in:
parent
4bab2adba4
commit
e87c42524a
@ -88,6 +88,12 @@ extern int IS_TURN_SERVER;
|
||||
#define TLSv1_2_SUPPORTED 0
|
||||
#endif
|
||||
|
||||
#if defined(SSL_OP_NO_TLSv1_3)
|
||||
#define TLSv1_3_SUPPORTED 1
|
||||
#else
|
||||
#define TLSv1_3_SUPPORTED 0
|
||||
#endif
|
||||
|
||||
#endif
|
||||
|
||||
#if defined(TURN_NO_DTLS) || (!defined(DTLS_CTRL_LISTEN) && (OPENSSL_VERSION_NUMBER < 0x10100000L))
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user