2008-07-17 18:11:15 +00:00
|
|
|
--[[
|
|
|
|
LuCI - Lua Configuration Interface
|
|
|
|
|
|
|
|
Copyright 2008 Steven Barth <steven@midlink.org>
|
|
|
|
Copyright 2008 Jo-Philipp Wich <xm@leipzig.freifunk.net>
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
$Id$
|
|
|
|
]]--
|
|
|
|
m = Map("upnpd", translate("upnpd"), translate("upnpd_desc"))
|
|
|
|
|
|
|
|
s = m:section(NamedSection, "config", "upnpd", "")
|
|
|
|
e = s:option(Flag, "enabled", translate("enable"))
|
2009-01-28 18:25:11 +00:00
|
|
|
e.rmempty = false
|
|
|
|
|
2008-07-17 18:11:15 +00:00
|
|
|
function e.write(self, section, value)
|
|
|
|
local cmd = (value == "1") and "enable" or "disable"
|
2009-01-28 18:32:26 +00:00
|
|
|
if value ~= "1" then
|
|
|
|
os.execute("/etc/init.d/miniupnpd stop")
|
|
|
|
end
|
2008-07-17 18:11:15 +00:00
|
|
|
os.execute("/etc/init.d/miniupnpd " .. cmd)
|
|
|
|
end
|
|
|
|
|
|
|
|
function e.cfgvalue(self, section)
|
|
|
|
return (os.execute("/etc/init.d/miniupnpd enabled") == 0) and "1" or "0"
|
|
|
|
end
|
|
|
|
|
2009-01-25 15:06:17 +00:00
|
|
|
s:option(Flag, "secure_mode").rmempty = true
|
2008-07-17 18:11:15 +00:00
|
|
|
s:option(Flag, "log_output").rmempty = true
|
2009-01-25 17:50:26 +00:00
|
|
|
s:option(Value, "download", nil, "kByte/s").rmempty = true
|
|
|
|
s:option(Value, "upload", nil, "kByte/s").rmempty = true
|
2008-07-17 18:11:15 +00:00
|
|
|
|
2009-01-25 15:06:17 +00:00
|
|
|
return m
|