From: Jo-Philipp Wich Date: Sun, 25 Jan 2009 16:46:28 +0000 (+0000) Subject: applications/luci-ffwizard-leipzig: prepare advanced firewall config and disable... X-Git-Tag: 0.9.0~740 X-Git-Url: https://git.archive.openwrt.org/?p=project%2Fluci.git;a=commitdiff_plain;h=e683011032ec099a866c9582f3e965b4a69074fd;ds=sidebyside applications/luci-ffwizard-leipzig: prepare advanced firewall config and disable tcp_ecn by default --- diff --git a/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua b/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua index 827bc14b7..6373c7a80 100644 --- a/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua +++ b/applications/luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua @@ -209,6 +209,16 @@ function main.write(self, section, value) uci:set("firewall", section[".name"], "drop_invalid", "0") end) + -- Prepare advanced config + local has_advanced = false + uci:foreach("firewall", "advanced", + function(section) has_advanced = true end) + + if not has_advanced then + uci:section("firewall", "advanced", nil, + { tcp_ecn = "0" }) + end + uci:save("firewall")