luci-app-mosquitto: drop tls1.0, add tls1.3
authorKarl Palsson <karlp@etactica.com>
Wed, 9 Oct 2019 13:47:01 +0000 (13:47 +0000)
committerFlorian Eckert <fe@dev.tdt.de>
Wed, 9 Oct 2019 14:04:54 +0000 (16:04 +0200)
This was dropped in mosquitto 1.6.0.

Signed-off-by: Karl Palsson <karlp@etactica.com>
(cherry picked from commit a7b1d63eb910dc1d4c54c7b2ea4f8ff2b901842e)

applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua

index 4b7582a195d425afac69040583edee06cb922c31..c687cf744e845e0a55af1c0bdc4c7c63ec65b256 100644 (file)
@@ -116,9 +116,9 @@ o = s:option(ListValue, "tls_version", "TLS Version",
     "Depends on your openssl version, empty to support all")
 o.optional = true
 o:value("", "Default")
-o:value("tlsv1")
 o:value("tlsv1.1")
 o:value("tlsv1.2")
+o:value("tlsv1.3")
 
 OptionalFlag(s, "require_certificate", "Require clients to present a certificate")
 OptionalFlag(s, "use_identity_as_username", "use_identity_as_username")