Added REJECT target to firewall zone configuration
authorSteven Barth <steven@midlink.org>
Wed, 24 Sep 2008 16:03:23 +0000 (16:03 +0000)
committerSteven Barth <steven@midlink.org>
Wed, 24 Sep 2008 16:03:23 +0000 (16:03 +0000)
applications/luci-fw/luasrc/model/cbi/luci_fw/general.lua

index 3ef3275..38f9513 100644 (file)
@@ -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