From d99a7020e8420f6583796f912975b9bb88f13d4e Mon Sep 17 00:00:00 2001 From: Steven Barth Date: Wed, 24 Sep 2008 19:15:25 +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 3ef3275cad..38f95136d0 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.30.2