luci-proto-3g: rename maxwait to delay option 2791/head
authorFlorian Eckert <fe@dev.tdt.de>
Wed, 26 Jun 2019 10:45:46 +0000 (12:45 +0200)
committerFlorian Eckert <fe@dev.tdt.de>
Wed, 26 Jun 2019 10:45:50 +0000 (12:45 +0200)
The option maxwait is not support by the 3g netifd proto.
To standardize that rename the maxwait option to delay as in the other
proto handlers luci-proto-qmi and luci-proto-ncm.

Signed-off-by: Florian Eckert <fe@dev.tdt.de>
protocols/luci-proto-3g/luasrc/model/cbi/admin_network/proto_3g.lua

index e05e3a47fd2a6000de6efa318b565cd8db3b1205..85c5cd60421d378376896d975a46c56defddf9ec 100644 (file)
@@ -4,7 +4,7 @@
 local map, section, net = ...
 
 local device, apn, service, pincode, username, password, dialnumber
-local ipv6, maxwait, defaultroute, metric, peerdns, dns,
+local ipv6, delay, defaultroute, metric, peerdns, dns,
       keepalive_failure, keepalive_interval, demand
 
 
@@ -58,12 +58,12 @@ if luci.model.network:has_ipv6() then
 end
 
 
-maxwait = section:taboption("advanced", Value, "maxwait",
+delay = section:taboption("advanced", Value, "delay",
        translate("Modem init timeout"),
        translate("Maximum amount of seconds to wait for the modem to become ready"))
 
-maxwait.placeholder = "20"
-maxwait.datatype    = "min(1)"
+delay.placeholder = "10"
+delay.datatype    = "min(1)"
 
 
 defaultroute = section:taboption("advanced", Flag, "defaultroute",