From 069cce7459d392a05e926541b3b0b20a671f5a44 Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Wed, 24 Sep 2008 16:03:23 +0000 Subject: [PATCH] Added REJECT target to firewall zone configuration --- applications/luci-fw/luasrc/model/cbi/luci_fw/general.lua | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/applications/luci-fw/luasrc/model/cbi/luci_fw/general.lua b/applications/luci-fw/luasrc/model/cbi/luci_fw/general.lua index 3ef3275ca..38f95136d 100644 --- a/applications/luci-fw/luasrc/model/cbi/luci_fw/general.lua +++ b/applications/luci-fw/luasrc/model/cbi/luci_fw/general.lua @@ -25,6 +25,7 @@ p[2] = s:option(ListValue, "output") p[3] = s:option(ListValue, "forward") for i, v in ipairs(p) do + v:value("REJECT", translate("fw_reject")) v:value("DROP", translate("fw_drop")) v:value("ACCEPT", translate("fw_accept")) end @@ -44,6 +45,7 @@ p[2] = s:option(ListValue, "output") p[3] = s:option(ListValue, "forward") for i, v in ipairs(p) do + v:value("REJECT", translate("fw_reject")) v:value("DROP", translate("fw_drop")) v:value("ACCEPT", translate("fw_accept")) end @@ -60,4 +62,4 @@ function net.cfgvalue(self, section) return value or name:cfgvalue(section) end -return m \ No newline at end of file +return m -- 2.11.0