diff options
author | Vladislav Grishenko <themiron@mail.ru> | 2017-11-29 00:19:21 +0500 |
---|---|---|
committer | Vladislav Grishenko <themiron@mail.ru> | 2017-12-30 22:48:49 +0500 |
commit | b75f1663f44fbeff4479998e37cdf208117be40a (patch) | |
tree | 680ae2d64a9bc8057b4fbcde494df840bbd28cbb /accel-pppd/ctrl/sstp/sstp.c | |
parent | 004ff247ffaad4016bb631b238a11abc285c1d0c (diff) | |
download | accel-ppp-b75f1663f44fbeff4479998e37cdf208117be40a.tar.gz accel-ppp-b75f1663f44fbeff4479998e37cdf208117be40a.zip |
sstp: keep default ssl ciphers for better compatibility
Diffstat (limited to 'accel-pppd/ctrl/sstp/sstp.c')
-rw-r--r-- | accel-pppd/ctrl/sstp/sstp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/accel-pppd/ctrl/sstp/sstp.c b/accel-pppd/ctrl/sstp/sstp.c index d3e945de..bfd61c1a 100644 --- a/accel-pppd/ctrl/sstp/sstp.c +++ b/accel-pppd/ctrl/sstp/sstp.c @@ -170,7 +170,7 @@ static X509 *conf_ssl_cert = NULL; static EVP_PKEY *conf_ssl_pkey = NULL; static const char *conf_ssl_ca_file = NULL; -static const char *conf_ssl_ciphers = "HIGH:!aNULL:!kRSA:!PSK:!SRP:!MD5:!RC4"; +static const char *conf_ssl_ciphers = NULL; static int conf_ssl_prefer_server_ciphers = 0; static int conf_ssl = 1; #endif |