aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGravatar Attila Molnar2015-11-11 10:51:00 +0100
committerGravatar Attila Molnar2015-11-11 10:51:00 +0100
commit2c7c0cd711ff09ec24677ddc118ffc2a8bee190c (patch)
treea689f18c448a62c1ed33b2adfeb6ef6af1ad9942 /src
parentm_ssl_gnutls Strip unrecognized tokens from the priority string if configured... (diff)
downloadinspircd++-2c7c0cd711ff09ec24677ddc118ffc2a8bee190c.tar.gz
inspircd++-2c7c0cd711ff09ec24677ddc118ffc2a8bee190c.tar.bz2
inspircd++-2c7c0cd711ff09ec24677ddc118ffc2a8bee190c.zip
m_ssl_gnutls Disable SSL v3 and when acting as a server enforce our cipher preferences by default
Diffstat (limited to 'src')
-rw-r--r--src/modules/extra/m_ssl_gnutls.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/extra/m_ssl_gnutls.cpp b/src/modules/extra/m_ssl_gnutls.cpp
index 112ec8ef9..716a736f8 100644
--- a/src/modules/extra/m_ssl_gnutls.cpp
+++ b/src/modules/extra/m_ssl_gnutls.cpp
@@ -348,7 +348,7 @@ namespace GnuTLS
static const char* GetDefault()
{
- return "NORMAL";
+ return "NORMAL:%SERVER_PRECEDENCE:-VERS-SSL3.0";
}
static std::string RemoveUnknownTokens(const std::string& prio)