summaryrefslogtreecommitdiffhomepage
path: root/applications
diff options
context:
space:
mode:
authorJo-Philipp Wich <jow@openwrt.org>2011-01-29 03:40:05 +0000
committerJo-Philipp Wich <jow@openwrt.org>2011-01-29 03:40:05 +0000
commita3c3168b1c4941e91c5cb3b5572a93f6dee8edec (patch)
tree841e5833597ce8dd5a15e7a58695fffaa2f9fd1f /applications
parent7e9b472ea9ecce7712a638d1be1cd80af9ba9726 (diff)
applications/luci-radvd: add missing model
Diffstat (limited to 'applications')
-rw-r--r--applications/luci-radvd/luasrc/model/cbi/radvd/dnssl.lua116
1 files changed, 116 insertions, 0 deletions
diff --git a/applications/luci-radvd/luasrc/model/cbi/radvd/dnssl.lua b/applications/luci-radvd/luasrc/model/cbi/radvd/dnssl.lua
new file mode 100644
index 000000000..fe17f0c28
--- /dev/null
+++ b/applications/luci-radvd/luasrc/model/cbi/radvd/dnssl.lua
@@ -0,0 +1,116 @@
+--[[
+LuCI - Lua Configuration Interface
+
+Copyright 2010 Jo-Philipp Wich <xm@subsignal.org>
+
+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: rdnss.lua 6715 2011-01-13 20:03:40Z jow $
+]]--
+
+local sid = arg[1]
+local utl = require "luci.util"
+
+m = Map("radvd", translatef("Radvd - DNSSL"),
+ translate("Radvd is a router advertisement daemon for IPv6. " ..
+ "It listens to router solicitations and sends router advertisements " ..
+ "as described in RFC 4861."))
+
+m.redirect = luci.dispatcher.build_url("admin/network/radvd")
+
+if m.uci:get("radvd", sid) ~= "dnssl" then
+ luci.http.redirect(m.redirect)
+ return
+end
+
+
+s = m:section(NamedSection, sid, "interface", translate("DNSSL Configuration"))
+s.addremove = false
+
+
+--
+-- General
+--
+
+o = s:option(Flag, "ignore", translate("Enable"))
+o.rmempty = false
+
+function o.cfgvalue(...)
+ local v = Flag.cfgvalue(...)
+ return v == "1" and "0" or "1"
+end
+
+function o.write(self, section, value)
+ Flag.write(self, section, value == "1" and "0" or "1")
+end
+
+
+o = s:option(Value, "interface", translate("Interface"),
+ translate("Specifies the logical interface name this section belongs to"))
+
+o.template = "cbi/network_netlist"
+o.nocreate = true
+o.optional = false
+
+function o.formvalue(...)
+ return Value.formvalue(...) or "-"
+end
+
+function o.validate(self, value)
+ if value == "-" then
+ return nil, translate("Interface required")
+ end
+ return value
+end
+
+function o.write(self, section, value)
+ m.uci:set("radvd", section, "ignore", 0)
+ m.uci:set("radvd", section, "interface", value)
+end
+
+
+o = s:option(DynamicList, "suffix", translate("Suffix"),
+ translate("Advertised Domain Suffixes"))
+
+o.optional = false
+o.rmempty = false
+o.datatype = "hostname"
+function o.cfgvalue(self, section)
+ local l = { }
+ local v = m.uci:get_list("radvd", section, "suffix")
+ for v in utl.imatch(v) do
+ l[#l+1] = v
+ end
+ return l
+end
+
+
+o = s:option(Value, "AdvDNSSLLifetime", translate("Lifetime"),
+ translate("Specifies the maximum duration how long the DNSSL entries are used for name resolution. Use 0 to specify an infinite lifetime"))
+
+o.datatype = "uinteger"
+o.placeholder = 1200
+
+function o.cfgvalue(self, section)
+ local v = Value.cfgvalue(self, section)
+ if v == "infinity" then
+ return 0
+ else
+ return v
+ end
+end
+
+function o.write(self, section, value)
+ if value == "0" then
+ Value.write(self, section, "infinity")
+ else
+ Value.write(self, section, value)
+ end
+end
+
+
+return m