luci-app-mosquitto: update tls versions for bridges as well 3514/head
authorKarl Palsson <karlp@etactica.com>
Thu, 16 Jan 2020 11:16:07 +0000 (11:16 +0000)
committerKarl Palsson <karlp@etactica.com>
Thu, 16 Jan 2020 11:51:33 +0000 (11:51 +0000)
Earlier we updated the options list for tls versions for the broker's
own listeners, but we missed the list of tls versions used when
connecting to remote brokers.

Fixes: a7b1d63eb91 drop tls1.0, add tls1.3
Signed-off-by: Karl Palsson <karlp@etactica.com>
applications/luci-app-mosquitto/luasrc/model/cbi/mosquitto.lua

index dd119421a3d82d25cdf0dafce1ba681c13ad6c81..0b0467e9a0e39abebf79c91a26472f549a4af54a 100644 (file)
@@ -209,9 +209,9 @@ psk_key.validate = validate_psk_key
 b_tls_version = s:option(ListValue, "tls_version", _("TLS Version"),
     _("The remote broker must support the same version of TLS for the connection to succeed."))
 b_tls_version:value("", "Default")
-b_tls_version:value("tlsv1")
 b_tls_version:value("tlsv1.1")
 b_tls_version:value("tlsv1.2")
+b_tls_version:value("tlsv1.3")
 b_tls_version.optional = true
 
 o = s:option(Value, "cafile", _("Path to CA file"))