diff options
author | Kim Alvefur <zash@zash.se> | 2017-09-27 15:38:46 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2017-09-27 15:38:46 +0200 |
commit | 8ae2b88fa049b2df5a414566346225062ac028ec (patch) | |
tree | 56fe9d39a6647773a32242a04d8241427ae080ab /util/sslconfig.lua | |
parent | b080aec43ae50bf1cb9396e06d4c37401b50bf9d (diff) | |
download | prosody-8ae2b88fa049b2df5a414566346225062ac028ec.tar.gz prosody-8ae2b88fa049b2df5a414566346225062ac028ec.zip |
util.sslconfig: Treat 'curveslist', added in LuaSec 0.7, as a colon-separated list, like ciphers (see #879, #943, #951)
Diffstat (limited to 'util/sslconfig.lua')
-rw-r--r-- | util/sslconfig.lua | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/util/sslconfig.lua b/util/sslconfig.lua index 931502b9..4c4e1d48 100644 --- a/util/sslconfig.lua +++ b/util/sslconfig.lua @@ -63,6 +63,9 @@ function finalisers.ciphers(cipherlist) return cipherlist; end +-- Curve list too +finalisers.curveslist = finalisers.ciphers; + -- protocol = "x" should enable only that protocol -- protocol = "x+" should enable x and later versions |