summaryrefslogtreecommitdiffhomepage
path: root/protocols/luci-proto-ppp/luasrc
diff options
context:
space:
mode:
authorJo-Philipp Wich <jo@mein.io>2019-11-03 17:49:58 +0100
committerJo-Philipp Wich <jo@mein.io>2019-11-03 17:56:58 +0100
commit284918bfaf2f6d7e46fb11377bb9a537b35dd58a (patch)
tree3513e26d15b92f44dc78f607754f1807d1f64c97 /protocols/luci-proto-ppp/luasrc
parent7a2fefc671ff7b5533620e809a4de07cb3b564a3 (diff)
treewide: move templates and libraries not used by the core to luci-compat
Signed-off-by: Jo-Philipp Wich <jo@mein.io>
Diffstat (limited to 'protocols/luci-proto-ppp/luasrc')
-rw-r--r--protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua82
1 files changed, 0 insertions, 82 deletions
diff --git a/protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua b/protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua
deleted file mode 100644
index f87b30fcc1..0000000000
--- a/protocols/luci-proto-ppp/luasrc/model/network/proto_ppp.lua
+++ /dev/null
@@ -1,82 +0,0 @@
--- Copyright 2011 Jo-Philipp Wich <jow@openwrt.org>
--- Licensed to the public under the Apache License 2.0.
-
-local netmod = luci.model.network
-
-local _, p
-for _, p in ipairs({"ppp", "pptp", "pppoe", "pppoa", "l2tp"}) do
-
- local proto = netmod:register_protocol(p)
-
- function proto.get_i18n(self)
- if p == "ppp" then
- return luci.i18n.translate("PPP")
- elseif p == "pptp" then
- return luci.i18n.translate("PPtP")
- elseif p == "pppoe" then
- return luci.i18n.translate("PPPoE")
- elseif p == "pppoa" then
- return luci.i18n.translate("PPPoATM")
- elseif p == "l2tp" then
- return luci.i18n.translate("L2TP")
- end
- end
-
- function proto.ifname(self)
- return p .. "-" .. self.sid
- end
-
- function proto.opkg_package(self)
- if p == "ppp" then
- return p
- elseif p == "pptp" then
- return "ppp-mod-pptp"
- elseif p == "pppoe" then
- return "ppp-mod-pppoe"
- elseif p == "pppoa" then
- return "ppp-mod-pppoa"
- elseif p == "l2tp" then
- return "xl2tpd"
- end
- end
-
- function proto.is_installed(self)
- if p == "pppoa" then
- return (nixio.fs.glob("/usr/lib/pppd/*/pppoatm.so")() ~= nil)
- elseif p == "pppoe" then
- return (nixio.fs.glob("/usr/lib/pppd/*/rp-pppoe.so")() ~= nil)
- elseif p == "pptp" then
- return (nixio.fs.glob("/usr/lib/pppd/*/pptp.so")() ~= nil)
- elseif p == "l2tp" then
- return nixio.fs.access("/lib/netifd/proto/l2tp.sh")
- else
- return nixio.fs.access("/lib/netifd/proto/ppp.sh")
- end
- end
-
- function proto.is_floating(self)
- return (p ~= "pppoe")
- end
-
- function proto.is_virtual(self)
- return true
- end
-
- function proto.get_interfaces(self)
- if self:is_floating() then
- return nil
- else
- return netmod.protocol.get_interfaces(self)
- end
- end
-
- function proto.contains_interface(self, ifc)
- if self:is_floating() then
- return (netmod:ifnameof(ifc) == self:ifname())
- else
- return netmod.protocol.contains_interface(self, ifc)
- end
- end
-
- netmod:register_pattern_virtual("^%s%%-%%w" % p)
-end