Update default SSL settings from Mozilla recommmendations

Disable TLSv1.0 and TLSv1.1 by default

Ref #1758
This commit is contained in:
Alexey Sokolov
2020-09-24 10:10:43 +01:00
parent 1b8654fe45
commit b80d674cfc
2 changed files with 7 additions and 13 deletions
+1 -1
View File
@@ -59,7 +59,7 @@ CZNC::CZNC()
m_uiConnectDelay(5),
m_uiAnonIPLimit(10),
m_uiMaxBufferSize(500),
m_uDisabledSSLProtocols(Csock::EDP_SSL),
m_uDisabledSSLProtocols(Csock::EDP_SSL | Csock::EDP_TLSv1 | Csock::EDP_TLSv1_1),
m_pModules(new CModules),
m_uBytesRead(0),
m_uBytesWritten(0),