summaryrefslogtreecommitdiffhomepage
path: root/protocols/luci-proto-ncm/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-ncm/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-ncm/luasrc')
-rw-r--r--protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua69
1 files changed, 0 insertions, 69 deletions
diff --git a/protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua b/protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua
deleted file mode 100644
index 49abe2347..000000000
--- a/protocols/luci-proto-ncm/luasrc/model/network/proto_ncm.lua
+++ /dev/null
@@ -1,69 +0,0 @@
---[[
-LuCI - Network model - NCM protocol extension
-
-Copyright 2015 Cezary Jackiewicz <cezary.jackiewicz@gmail.com>
-
-Licensed under the Apache License, Version 2.0 (the "License");
-you may not use this file except in compliance with the License.
-You may obtain a copy of the License at
-
- http://www.apache.org/licenses/LICENSE-2.0
-
-Unless required by applicable law or agreed to in writing, software
-distributed under the License is distributed on an "AS IS" BASIS,
-WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-See the License for the specific language governing permissions and
-limitations under the License.
-
-]]--
-
-local netmod = luci.model.network
-
-local proto = netmod:register_protocol("ncm")
-local interface = luci.model.network.interface
-
-function proto.get_i18n(self)
- return luci.i18n.translate("NCM")
-end
-
-function proto.opkg_package(self)
- return "comgt-ncm"
-end
-
-function proto.is_installed(self)
- return nixio.fs.access("/lib/netifd/proto/ncm.sh")
-end
-
-function proto.is_floating(self)
- return true
-end
-
-function proto.is_virtual(self)
- return true
-end
-
-function proto.get_interface(self)
- local _ifname=netmod.protocol.ifname(self)
- if not _ifname then
- _ifname = "wan"
- end
- return interface(_ifname, self)
-end
-
-function proto.get_interfaces(self)
- return nil
-end
-
-function proto.contains_interface(self, ifc)
- return (netmod:ifnameof(ifc) == self:ifname())
-end
-
-netmod:register_pattern_virtual("^ncm%-%w")
-
-netmod:register_error_code("CONFIGURE_FAILED", luci.i18n.translate("Configuration failed"))
-netmod:register_error_code("DISCONNECT_FAILED", luci.i18n.translate("Disconnection attempt failed"))
-netmod:register_error_code("FINALIZE_FAILED", luci.i18n.translate("Finalizing failed"))
-netmod:register_error_code("GETINFO_FAILED", luci.i18n.translate("Modem information query failed"))
-netmod:register_error_code("INITIALIZE_FAILED", luci.i18n.translate("Initialization failure"))
-netmod:register_error_code("SETMODE_FAILED", luci.i18n.translate("Setting operation mode failed"))
-netmod:register_error_code("UNSUPPORTED_MODEM", luci.i18n.translate("Unsupported modem"))