luci: 4.62-2 (#2439)

This commit is contained in:
Tianhe Y 2023-04-01 14:03:45 +08:00 committed by sbwml
parent 226736e6bf
commit c1a802a438
2 changed files with 1 additions and 25 deletions

View File

@ -7,7 +7,7 @@ include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-passwall
PKG_VERSION:=4.62
PKG_RELEASE:=1
PKG_RELEASE:=2
PKG_CONFIG_DEPENDS:= \
CONFIG_PACKAGE_$(PKG_NAME)_Iptables_Transparent_Proxy \

View File

@ -809,30 +809,6 @@ function gen_config(var)
table.insert(protocols, w)
end)
end
--[[
local _domain = nil
if e.domain_list then
_domain = {}
string.gsub(e.domain_list, '[^' .. "\r\n" .. ']+', function(w)
table.insert(_domain, w)
end)
end
local _ip = nil
if e.ip_list then
_ip = {}
string.gsub(e.ip_list, '[^' .. "\r\n" .. ']+', function(w)
table.insert(_ip, w)
end)
end
table.insert(rules, {
type = "field",
outboundTag = outboundTag,
balancerTag = balancerTag,
domain = _domain,
ip = _ip,
protocol = protocols
})
--]]
if e.domain_list then
local _domain = {}
string.gsub(e.domain_list, '[^' .. "\r\n" .. ']+', function(w)