From 9ac4ba5fa760b1180c53c5dc22f2fcadb08c5bda Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Thu, 27 Nov 2008 00:11:26 +0000 Subject: applications/luci-olsr: fix handling of hna6 announcements --- .../luci-olsr/luasrc/model/cbi/olsr/olsrdhna.lua | 27 ++++++++++++++-------- 1 file changed, 18 insertions(+), 9 deletions(-) (limited to 'applications/luci-olsr/luasrc/model/cbi') diff --git a/applications/luci-olsr/luasrc/model/cbi/olsr/olsrdhna.lua b/applications/luci-olsr/luasrc/model/cbi/olsr/olsrdhna.lua index 632a4d4a4b..ea2f88d794 100644 --- a/applications/luci-olsr/luasrc/model/cbi/olsr/olsrdhna.lua +++ b/applications/luci-olsr/luasrc/model/cbi/olsr/olsrdhna.lua @@ -14,14 +14,23 @@ $Id$ mh = Map("olsrd", translate("olsrd_hna", "OLSR - HNA-Ankündigungen")) -for i, sect in ipairs({ "Hna4", "Hna6" }) do - hna = mh:section(TypedSection, sect) - hna.addremove = true - hna.anonymous = true - hna.template = "cbi/tblsection" - - net = hna:option(Value, "netaddr") - msk = hna:option(Value, "netmask") -end + +hna4 = mh:section(TypedSection, "Hna4") +hna4.addremove = true +hna4.anonymous = true +hna4.template = "cbi/tblsection" + +net4 = hna4:option(Value, "netaddr") +msk4 = hna4:option(Value, "netmask") + + +hna6 = mh:section(TypedSection, "Hna6") +hna6.addremove = true +hna6.anonymous = true +hna6.template = "cbi/tblsection" + +net6 = hna6:option(Value, "netaddr") +msk6 = hna6:option(Value, "prefix") + return mh -- cgit v1.2.3