summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2014-10-26 11:58:22 +0100
committerAlexander Barton <alex@barton.de>2014-10-26 11:58:22 +0100
commit6e4235443eb4dee0930a65e613c8bf5e00331f73 (patch)
tree79764dec2aa13f0de4aa060ae47267a88284eb13 /src
parentf33a4067a16747c8fc5f1c0b5eb5e5520ee1e7a7 (diff)
parentcdcf474f159ad0c3c2a652cdbfa5e7f09171667c (diff)
downloadngircd-6e4235443eb4dee0930a65e613c8bf5e00331f73.tar.gz
ngircd-6e4235443eb4dee0930a65e613c8bf5e00331f73.zip
Merge branch 'CipherListNoSSL3'
* CipherListNoSSL3:
  INSTALL: List the changed SSL CipherList default value.
  Update "CipherList" to not enable SSLv3 by default
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conf.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index 6692ecbb..5f8c3929 100644
--- a/src/ngircd/conf.c
+++ b/src/ngircd/conf.c
@@ -88,10 +88,10 @@ static void Init_Server_Struct PARAMS(( CONF_SERVER *Server ));
 #endif
 
 #ifdef HAVE_LIBSSL
-#define DEFAULT_CIPHERS		"HIGH:!aNULL:@STRENGTH"
+#define DEFAULT_CIPHERS		"HIGH:!aNULL:@STRENGTH:!SSLv3"
 #endif
 #ifdef HAVE_LIBGNUTLS
-#define DEFAULT_CIPHERS		"SECURE128"
+#define DEFAULT_CIPHERS		"SECURE128:-VERS-SSL3.0"
 #endif
 
 #ifdef SSL_SUPPORT