diff options
author | Jo-Philipp Wich <jow@openwrt.org> | 2011-01-23 20:23:43 +0000 |
---|---|---|
committer | Jo-Philipp Wich <jow@openwrt.org> | 2011-01-23 20:23:43 +0000 |
commit | 5b77c42e560f68e37b3c03cf45defe78215f9c5f (patch) | |
tree | 805b7e41008a3901b3bfe737dcd2bb07525e691f | |
parent | d0a994096448d56122fe7f9a3b1f482e3f318a61 (diff) |
applications/luci-firewall: support NOTRACK rules
-rw-r--r-- | applications/luci-firewall/luasrc/model/cbi/luci_fw/trule.lua | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/applications/luci-firewall/luasrc/model/cbi/luci_fw/trule.lua b/applications/luci-firewall/luasrc/model/cbi/luci_fw/trule.lua index 99011fea7..dc985d8a3 100644 --- a/applications/luci-firewall/luasrc/model/cbi/luci_fw/trule.lua +++ b/applications/luci-firewall/luasrc/model/cbi/luci_fw/trule.lua @@ -136,6 +136,7 @@ jump.default = "ACCEPT" jump:value("DROP", translate("drop")) jump:value("ACCEPT", translate("accept")) jump:value("REJECT", translate("reject")) +jump:value("NOTRACK", translate("don't track")) smac = s:taboption("advanced", Value, "src_mac", translate("Source MAC address")) |