kcptun: bump to 20190416

This commit is contained in:
coolsnowwolf 2019-04-18 12:33:20 +08:00
parent f2966113d1
commit 742a43571f
4 changed files with 20 additions and 7 deletions

View File

@ -8,12 +8,12 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=kcptun
PKG_VERSION:=20190401
PKG_VERSION:=20190416
PKG_RELEASE:=1
PKG_SOURCE:=$(PKG_NAME)-$(PKG_VERSION).tar.gz
PKG_SOURCE_URL:=https://codeload.github.com/xtaci/kcptun/tar.gz/v$(PKG_VERSION)?
PKG_HASH:=70d01d99cc7ae5b77a0943c61377216a0f758d2b2ac3d60786af8f6e9a66065e
PKG_HASH:=0c60589872b87433da5d6dc045db1be3fdb9f3addb6458b0e5056c16dc4f86b0
PKG_LICENSE:=MIT
PKG_LICENSE_FILES:=LICENSE.md

View File

@ -8,6 +8,9 @@ include $(TOPDIR)/rules.mk
LUCI_TITLE:=ARP Binding
LUCI_DEPENDS:=+ip-full
LUCI_PKGARCH:=all
PKG_VERSION:=1
PKG_RELEASE:=2
include $(TOPDIR)/feeds/luci/luci.mk

View File

@ -1,7 +1,4 @@
--[[
ARP绑定 Luci页面 CBI page
Copyright (C) 2015 GuoGuo <gch981213@gmail.com>
]]--
local sys = require "luci.sys"
local ifaces = sys.net:devices()
@ -15,12 +12,22 @@ s.anonymous = true
s.addremove = true
a = s:option(Value, "ipaddr", translate("IP Address"))
a.datatype = "ipaddr"
a.optional = false
a.datatype = "ipaddr"
luci.ip.neighbors({ family = 4 }, function(entry)
if entry.reachable then
a:value(entry.dest:string())
end
end)
a = s:option(Value, "macaddr", translate("MAC Address"))
a.datatype = "macaddr"
a.optional = false
luci.ip.neighbors({family = 4}, function(neighbor)
if neighbor.reachable then
a:value(neighbor.mac, "%s (%s)" %{neighbor.mac, neighbor.dest:string()})
end
end)
a = s:option(ListValue, "ifname", translate("Interface"))
for _, iface in ipairs(ifaces) do

View File

@ -17,5 +17,8 @@ msgstr ""
msgid "IP/MAC Binding"
msgstr "IP/MAC绑定"
msgid "MAC Address"
msgstr "MAC 地址"
msgid "ARP is used to convert a network address (e.g. an IPv4 address) to a physical address such as a MAC address.Here you can add some static ARP binding rules."
msgstr "ARP协议是用于实现网络地址到物理地址转换的协议。在这里你可以设置静态ARP绑定规则。"