From 75ba7484f38c55a7bf457381e679934a123cff3e Mon Sep 17 00:00:00 2001 From: Ayideyia <150233177+Ayideyia@users.noreply.github.com> Date: Wed, 4 Dec 2024 09:57:44 +0800 Subject: [PATCH] Update plugin-share-profile-to-phone --- plugins/GFS/plugin-share-profile-to-phone.js | 31 ++++++++++++++++---- 1 file changed, 25 insertions(+), 6 deletions(-) diff --git a/plugins/GFS/plugin-share-profile-to-phone.js b/plugins/GFS/plugin-share-profile-to-phone.js index 9c7f167..842bb47 100644 --- a/plugins/GFS/plugin-share-profile-to-phone.js +++ b/plugins/GFS/plugin-share-profile-to-phone.js @@ -44,11 +44,11 @@ const onRun = async () => { // 新配置 else { // * 开启TUN - const tun = _profile.inbounds.find((v) => v.type === 'tun') - if (tun) { - tun.enable = true - } else { - _profile.inbounds.push({ + let tun = _profile.inbounds.find((v) => v.type === 'tun') + const mixed = _profile.inbounds.find((v) => v.type === 'mixed') + const http = _profile.inbounds.find((v) => v.type === 'http') + if (!tun) { + tun = { id: Plugins.sampleID(), type: 'tun', tag: 'tun-in', @@ -62,7 +62,26 @@ const onRun = async () => { endpoint_independent_nat: false, stack: 'mixed' } - }) + } + _profile.inbounds.push(tun) + } + tun.enable = true + if (mixed) { + tun.tun.platform = { + http_proxy: { + enabled: false, + server: '127.0.0.1', + server_port: mixed.mixed.listen.listen_port + } + } + } else if (http) { + tun.tun.platform = { + http_proxy: { + enabled: false, + server: '127.0.0.1', + server_port: http.http.listen.listen_port + } + } } // * 替换本地规则集为远程规则集(仅从规则集中心添加的可替换) _profile.route.rule_set.forEach((ruleset) => {