diff options
author | Steven Barth <steven@midlink.org> | 2008-09-24 16:03:23 +0000 |
---|---|---|
committer | Steven Barth <steven@midlink.org> | 2008-09-24 16:03:23 +0000 |
commit | 069cce7459d392a05e926541b3b0b20a671f5a44 (patch) | |
tree | 500697f8162339545754c9f2b4472900c2d2cf50 | |
parent | fcd2b9726af46c4998dbf9b09ce940eadea41fe6 (diff) |
Added REJECT target to firewall zone configuration
-rw-r--r-- | applications/luci-fw/luasrc/model/cbi/luci_fw/general.lua | 4 |
1 files changed, 3 insertions, 1 deletions
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 |