From: Florian Eckert Date: Mon, 11 Nov 2019 09:15:05 +0000 (+0100) Subject: luci-app-mwan3: add new httping_ssl option X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=refs%2Fpull%2F3298%2Fhead;p=oweals%2Fluci.git luci-app-mwan3: add new httping_ssl option Add the new possibilty to ping https targets with httping. Signed-off-by: Florian Eckert --- diff --git a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua index e70664d35..d2d3b950a 100644 --- a/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua +++ b/applications/luci-app-mwan3/luasrc/model/cbi/mwan/interfaceconfig.lua @@ -9,6 +9,7 @@ local track_method, reliability, count, size, max_ttl local check_quality, failure_latency, failure_loss, recovery_latency local recovery_loss, timeout, interval, failure local keep_failure, recovery, down, up, flush, metric +local httping_ssl arg[1] = arg[1] or "" @@ -55,6 +56,10 @@ if os.execute("which httping 1>/dev/null") == 0 then track_method:value("httping") end +httping_ssl = mwan_interface:option(Flag, "httping_ssl", translate("Enable ssl tracking"), + translate("Enables https tracking on ssl port 443")) +httping_ssl:depends("track_method", "httping") + reliability = mwan_interface:option(Value, "reliability", translate("Tracking reliability"), translate("Acceptable values: 1-100. This many Tracking IP addresses must respond for the link to be deemed up")) reliability.datatype = "range(1, 100)"