From e683011032ec099a866c9582f3e965b4a69074fd Mon Sep 17 00:00:00 2001 From: Jo-Philipp Wich Date: Sun, 25 Jan 2009 16:46:28 +0000 Subject: [PATCH] applications/luci-ffwizard-leipzig: prepare advanced firewall config and disable tcp_ecn by default --- .../luci-ffwizard-leipzig/luasrc/model/cbi/ffwizard.lua | 10 ++++++++++ 1 file changed, 10 insertions(+) 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") -- 2.11.0