# HG changeset patch # User Kim Alvefur # Date 1540739550 -3600 # Node ID 2860f8dabf35466fcb84e3e54b9d63069fb542ad # Parent 4552ba1333acf975a171ffed56bca7928a83ba77 util.sslconfig: Recognise TLS 1.3 as a protocol version This enables it to understand protocol = "tlsv1_3+" diff -r 4552ba1333ac -r 2860f8dabf35 util/sslconfig.lua --- a/util/sslconfig.lua Sun Oct 28 01:40:52 2018 +0200 +++ b/util/sslconfig.lua Sun Oct 28 16:12:30 2018 +0100 @@ -70,7 +70,7 @@ -- protocol = "x" should enable only that protocol -- protocol = "x+" should enable x and later versions -local protocols = { "sslv2", "sslv3", "tlsv1", "tlsv1_1", "tlsv1_2" }; +local protocols = { "sslv2", "sslv3", "tlsv1", "tlsv1_1", "tlsv1_2", "tlsv1_3" }; for i = 1, #protocols do protocols[protocols[i] .. "+"] = i - 1; end -- this interacts with ssl.options as well to add no_x