summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-fw/src
diff options
context:
space:
mode:
Diffstat (limited to 'applications/luci-fw/src')
-rw-r--r--applications/luci-fw/src/controller/luci_fw/luci_fw.lua2
-rw-r--r--applications/luci-fw/src/model/cbi/luci_fw/firewall.lua2
-rw-r--r--applications/luci-fw/src/model/cbi/luci_fw/portfw.lua4
-rw-r--r--applications/luci-fw/src/model/cbi/luci_fw/routing.lua4
4 files changed, 6 insertions, 6 deletions
diff --git a/applications/luci-fw/src/controller/luci_fw/luci_fw.lua b/applications/luci-fw/src/controller/luci_fw/luci_fw.lua
index 9a92b90998..4190970661 100644
--- a/applications/luci-fw/src/controller/luci_fw/luci_fw.lua
+++ b/applications/luci-fw/src/controller/luci_fw/luci_fw.lua
@@ -1,4 +1,4 @@
-module("ffluci.controller.luci_fw.luci_fw", package.seeall)
+module("luci.controller.luci_fw.luci_fw", package.seeall)
function index()
entry({"admin", "network", "portfw"}, cbi("luci_fw/portfw"), "Portweiterleitung", 70)
diff --git a/applications/luci-fw/src/model/cbi/luci_fw/firewall.lua b/applications/luci-fw/src/model/cbi/luci_fw/firewall.lua
index 7c89d07c55..f58f74c2bc 100644
--- a/applications/luci-fw/src/model/cbi/luci_fw/firewall.lua
+++ b/applications/luci-fw/src/model/cbi/luci_fw/firewall.lua
@@ -19,7 +19,7 @@ iface.optional = true
oface = s:option(ListValue, "oface", "Ausgangsschnittstelle")
oface.optional = true
-for k, v in pairs(ffluci.model.uci.sections("network")) do
+for k, v in pairs(luci.model.uci.sections("network")) do
if v[".type"] == "interface" and k ~= "loopback" then
iface:value(k)
oface:value(k)
diff --git a/applications/luci-fw/src/model/cbi/luci_fw/portfw.lua b/applications/luci-fw/src/model/cbi/luci_fw/portfw.lua
index 90ebb4c24d..e4f4fa2ac7 100644
--- a/applications/luci-fw/src/model/cbi/luci_fw/portfw.lua
+++ b/applications/luci-fw/src/model/cbi/luci_fw/portfw.lua
@@ -1,5 +1,5 @@
-- ToDo: Translate, Add descriptions and help texts
-require("ffluci.sys")
+require("luci.sys")
m = Map("luci_fw", "Portweiterleitung", [[Portweiterleitungen ermöglichen es interne
Netzwerkdienste von einem anderen externen Netzwerk aus erreichbar zu machen.]])
@@ -10,7 +10,7 @@ s.anonymous = true
iface = s:option(ListValue, "iface", "Schnittstelle", "Externe Schnittstelle")
iface.default = "wan"
-for k, v in pairs(ffluci.model.uci.sections("network")) do
+for k, v in pairs(luci.model.uci.sections("network")) do
if v[".type"] == "interface" and k ~= "loopback" then
iface:value(k)
end
diff --git a/applications/luci-fw/src/model/cbi/luci_fw/routing.lua b/applications/luci-fw/src/model/cbi/luci_fw/routing.lua
index 5805b1d3f7..364e69f623 100644
--- a/applications/luci-fw/src/model/cbi/luci_fw/routing.lua
+++ b/applications/luci-fw/src/model/cbi/luci_fw/routing.lua
@@ -1,5 +1,5 @@
-- ToDo: Translate, Add descriptions and help texts
-require("ffluci.sys")
+require("luci.sys")
m = Map("luci_fw", "Routing", [[An dieser Stelle wird festlegt, welcher Netzverkehr zwischen einzelnen
Schnittstellen erlaubt werden soll. Es werden jeweils nur neue Verbindungen
betrachtet, d.h. Pakete von aufgebauten oder zugehörigen Verbindungen werden automatisch in beide Richtungen
@@ -14,7 +14,7 @@ s.anonymous = true
iface = s:option(ListValue, "iface", "Eingang", "Eingangsschnittstelle")
oface = s:option(ListValue, "oface", "Ausgang", "Ausgangsschnittstelle")
-for k, v in pairs(ffluci.model.uci.sections("network")) do
+for k, v in pairs(luci.model.uci.sections("network")) do
if v[".type"] == "interface" and k ~= "loopback" then
iface:value(k)
oface:value(k)