summaryrefslogtreecommitdiffhomepage
path: root/applications/luci-app-p2pblock/luasrc/model/cbi
diff options
context:
space:
mode:
authorHannu Nyman <hannu.nyman@iki.fi>2018-01-20 15:45:45 +0200
committerHannu Nyman <hannu.nyman@iki.fi>2018-01-20 15:49:44 +0200
commit7edc6f03f04f386c680d419afc5bf50c91c819a3 (patch)
tree83189122118b1282e524d619b3715d697e769ed3 /applications/luci-app-p2pblock/luasrc/model/cbi
parent6a8ee26207a8d085c91919d4b056bc2fae524069 (diff)
freifunk-p2pblock / luci-app-p2pblock: remove from repo
Remove freifunk-p2pblock and luci-app-p2pblock as they have been BROKEN since 2016. Packages depend on the removed l7-protocols as well as the deprecated l7 support in the iptables kernel modules. Signed-off-by: Hannu Nyman <hannu.nyman@iki.fi>
Diffstat (limited to 'applications/luci-app-p2pblock/luasrc/model/cbi')
-rw-r--r--applications/luci-app-p2pblock/luasrc/model/cbi/luci_fw/p2pblock.lua66
1 files changed, 0 insertions, 66 deletions
diff --git a/applications/luci-app-p2pblock/luasrc/model/cbi/luci_fw/p2pblock.lua b/applications/luci-app-p2pblock/luasrc/model/cbi/luci_fw/p2pblock.lua
deleted file mode 100644
index 1f21429c0d..0000000000
--- a/applications/luci-app-p2pblock/luasrc/model/cbi/luci_fw/p2pblock.lua
+++ /dev/null
@@ -1,66 +0,0 @@
--- Copyright 2009 Jo-Philipp Wich <jow@openwrt.org>
--- Licensed to the public under the Apache License 2.0.
-
-local sys = require "luci.sys"
-
-m = Map("freifunk_p2pblock", translate("P2P-Block"),
- translate("P2P-Block is a greylisting mechanism to block various peer-to-peer protocols for non-whitelisted clients."))
-
-s = m:section(NamedSection, "p2pblock", "settings", "Settings")
-s.anonymous = true
-s.addremove = false
-
-en = s:option(Flag, "_enabled", translate("Enable P2P-Block"))
-en.rmempty = false
-
-function en.cfgvalue()
- return ( sys.init.enabled("freifunk-p2pblock") and "1" or "0" )
-end
-
-function en.write(self, section, val)
- if val == "1" then
- sys.init.enable("freifunk-p2pblock")
- else
- sys.init.disable("freifunk-p2pblock")
- end
-end
-
-s:option(Value, "portrange", translate("Portrange"))
-
-s:option(Value, "blocktime", translate("Block Time"),
- translate("seconds"))
-
-s:option(DynamicList, "whitelist", translate("Whitelisted IPs"))
-
-l7 = s:option(MultiValue, "layer7", translate("Layer7-Protocols"))
-l7.widget = "checkbox"
-l7:value("aim", "AIM Chat")
-l7:value("bittorrent", "Bittorrent")
-l7:value("edonkey", "eDonkey, eMule, Kademlia")
-l7:value("fasttrack", "Fasttrack Protocol")
-l7:value("ftp", "File Transfer Protocol")
-l7:value("gnutella", "Gnutella")
-l7:value("http", "Hypertext Transfer Protocol")
-l7:value("ident", "Ident Protocol")
-l7:value("irc", "Internet Relay Chat")
-l7:value("jabber", "Jabber/XMPP")
-l7:value("msnmessenger", "MSN Messenger")
-l7:value("ntp", "Network Time Protocol")
-l7:value("pop3", "POP3 Protocol")
-l7:value("smtp", "SMTP Protocol")
-l7:value("ssl", "SSL Protocol")
-l7:value("vnc", "VNC Protocol")
-
-ipp2p = s:option(MultiValue, "ipp2p", translate("IP-P2P"))
-ipp2p.widget = "checkbox"
-ipp2p:value("edk", "eDonkey, eMule, Kademlia")
-ipp2p:value("kazaa", "KaZaA, FastTrack")
-ipp2p:value("gnu", "Gnutella")
-ipp2p:value("dc", "Direct Connect")
-ipp2p:value("bit", "BitTorrent, extended BT")
-ipp2p:value("apple", "AppleJuice")
-ipp2p:value("winmx", "WinMX")
-ipp2p:value("soul", "SoulSeek")
-ipp2p:value("ares", "AresLite")
-
-return m