From: Steven Barth Date: Sun, 25 Jan 2009 17:30:30 +0000 (+0000) Subject: Add unit for UPNP (closes #39) X-Git-Tag: 0.8.5~40 X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=1b42cbb63f53f36392b32bff2e63f8ceb748afa3;p=project%2Fluci.git Add unit for UPNP (closes #39) --- diff --git a/applications/luci-upnp/luasrc/model/cbi/upnp/upnp.lua b/applications/luci-upnp/luasrc/model/cbi/upnp/upnp.lua index 0d07a564ad..293b1fb966 100644 --- a/applications/luci-upnp/luasrc/model/cbi/upnp/upnp.lua +++ b/applications/luci-upnp/luasrc/model/cbi/upnp/upnp.lua @@ -27,7 +27,7 @@ end s:option(Flag, "secure_mode").rmempty = true s:option(Flag, "log_output").rmempty = true -s:option(Value, "download").rmempty = true -s:option(Value, "upload").rmempty = true +s:option(Value, "download", nil, "kb/s").rmempty = true +s:option(Value, "upload", nil, "kb/s").rmempty = true return m diff --git a/applications/luci-upnp/luasrc/model/cbi/upnp/upnpmini.lua b/applications/luci-upnp/luasrc/model/cbi/upnp/upnpmini.lua index 592388348c..db5a8fae5a 100644 --- a/applications/luci-upnp/luasrc/model/cbi/upnp/upnpmini.lua +++ b/applications/luci-upnp/luasrc/model/cbi/upnp/upnpmini.lua @@ -25,7 +25,7 @@ function e.cfgvalue(self, section) return (os.execute("/etc/init.d/miniupnpd enabled") == 0) and "1" or "0" end -s:option(Value, "download").rmempty = true -s:option(Value, "upload").rmempty = true +s:option(Value, "download", nil, "kb/s").rmempty = true +s:option(Value, "upload", nil, "kb/s").rmempty = true return m \ No newline at end of file