diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2014-11-04 20:53:04 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2014-11-04 20:53:04 +0100 |
commit | cdca3094ecdb7035cb9fa21cb4435ab69f2f1f6e (patch) | |
tree | bfffb00b0ed6cf8817545a6425a320f8e8324751 /src | |
parent | 0d1abd38999e1b2ef7355667fb72c58e830d1fc7 (diff) | |
download | weechat-cdca3094ecdb7035cb9fa21cb4435ab69f2f1f6e.zip |
relay: disable SSLv3 by default
The new default value for option relay.network.ssl_priorities is now
"NORMAL:-VERS-SSL3.0".
Diffstat (limited to 'src')
-rw-r--r-- | src/plugins/relay/relay-config.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/relay/relay-config.c b/src/plugins/relay/relay-config.c index 00eb6ca4c..ad99eb226 100644 --- a/src/plugins/relay/relay-config.c +++ b/src/plugins/relay/relay-config.c @@ -773,7 +773,7 @@ relay_config_init () "documentation of function gnutls_priority_init in gnutls " "manual, common strings are: \"PERFORMANCE\", \"NORMAL\", " "\"SECURE128\", \"SECURE256\", \"EXPORT\", \"NONE\")"), - NULL, 0, 0, "PERFORMANCE", NULL, 0, + NULL, 0, 0, "NORMAL:-VERS-SSL3.0", NULL, 0, &relay_config_check_network_ssl_priorities, NULL, &relay_config_change_network_ssl_priorities, NULL, NULL, NULL); relay_config_network_websocket_allowed_origins = weechat_config_new_option ( |