luci: fixup 5891a6b

This commit is contained in:
xiaorouji 2023-08-12 02:24:52 +08:00 committed by sbwml
parent 9230933e77
commit a3b1f1630c
4 changed files with 7 additions and 2 deletions

View File

@ -6,7 +6,7 @@
include $(TOPDIR)/rules.mk
PKG_NAME:=luci-app-passwall
PKG_VERSION:=4.67-3
PKG_VERSION:=4.67-4
PKG_RELEASE:=
PKG_CONFIG_DEPENDS:= \

View File

@ -183,6 +183,9 @@ if (has_v2ray or has_xray) and #nodes_table > 0 then
for k1, v1 in pairs(balancing_list) do
o:value(v1.id, v1.remark)
end
for k1, v1 in pairs(iface_list) do
o:value(v1.id, v1.remark)
end
for k1, v1 in pairs(normal_list) do
o:value(v1.id, v1.remark)
end

View File

@ -373,6 +373,7 @@ function gen_config_server(node)
tag = "outbound",
streamSettings = {
sockopt = {
mark = 255,
interface = node.outbound_node_iface
}
}
@ -819,6 +820,7 @@ function gen_config(var)
tag = rule_name,
streamSettings = {
sockopt = {
mark = 255,
interface = _node.iface
}
}
@ -920,6 +922,7 @@ function gen_config(var)
tag = "outbound",
streamSettings = {
sockopt = {
mark = 255,
interface = node.iface
}
}

View File

@ -25,7 +25,6 @@ DNS_PORT=15353
TUN_DNS="127.0.0.1#${DNS_PORT}"
LOCAL_DNS=119.29.29.29,223.5.5.5
DEFAULT_DNS=
IFACES=
ENABLED_DEFAULT_ACL=0
PROXY_IPV6=0
PROXY_IPV6_UDP=0