mirror of
https://github.com/EasyTier/EasytierGame.git
synced 2026-09-20 03:21:59 +00:00
Compare commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
bc66a13fbf | ||
|
|
89913eeebc | ||
|
|
1f344f1d65 | ||
|
|
fb5e5bfff0 | ||
|
|
70c3217ab5 | ||
|
|
e91bd07ce8 | ||
|
|
9f63d9bf2e |
@@ -1,20 +0,0 @@
|
|||||||
pnpm run build
|
|
||||||
rustup default nightly
|
|
||||||
|
|
||||||
pnpm tauri build -- -Z build-std --target x86_64-win7-windows-msvc
|
|
||||||
rustup default stable
|
|
||||||
pnpm tauri build
|
|
||||||
|
|
||||||
@REM 复制文件夹src-tauri\easytier 到 src-tauri\target\release目录下 覆盖目录下同名目录
|
|
||||||
xcopy /s /y /i src-tauri\easytier src-tauri\target\release\easytier
|
|
||||||
@REM 复制 src-tauri\帮助.txt 和 src-tauri\uninstall.exe 到 src-tauri\target\release目录下 覆盖目录下同名文件
|
|
||||||
xcopy /y src-tauri\帮助.txt src-tauri\target\release\帮助.txt
|
|
||||||
xcopy /y src-tauri\uninstall.exe src-tauri\target\release\uninstall.exe
|
|
||||||
@REM 复制文件夹src-tauri\easytier到 src-tauri\target\x86_64-win7-windows-msvc\release目录下 覆盖目录下同名目录
|
|
||||||
@REM 复制 src-tauri\帮助.txt 和 src-tauri\uninstall.exe 到 src-tauri\target\x86_64-win7-windows-msvc\release目录下 覆盖目录下同名文件
|
|
||||||
xcopy /y src-tauri\帮助.txt src-tauri\target\x86_64-win7-windows-msvc\release\帮助.txt
|
|
||||||
xcopy /y src-tauri\uninstall.exe src-tauri\target\x86_64-win7-windows-msvc\release\uninstall.exe
|
|
||||||
xcopy /s /y /i src-tauri\easytier src-tauri\target\x86_64-win7-windows-msvc\release\easytier
|
|
||||||
|
|
||||||
pnpm run release
|
|
||||||
pnpm run release-win7
|
|
||||||
@@ -31,6 +31,12 @@ export const getServerArgs = () => {
|
|||||||
if (networkSecret) {
|
if (networkSecret) {
|
||||||
args.push("--network-secret", networkSecret);
|
args.push("--network-secret", networkSecret);
|
||||||
}
|
}
|
||||||
|
if (mainStore.serverConfig.ipv6PublicAddrProvider) {
|
||||||
|
args.push("--ipv6-public-addr-provider", "true");
|
||||||
|
}
|
||||||
|
if (mainStore.serverConfig.disableRelayData) {
|
||||||
|
args.push("--disable-relay-data", "true");
|
||||||
|
}
|
||||||
|
|
||||||
return args;
|
return args;
|
||||||
};
|
};
|
||||||
|
|||||||
+24
-21
@@ -3,7 +3,7 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"author": "leizi97",
|
"author": "leizi97",
|
||||||
"description": "A simple network initiator based on Easytier",
|
"description": "A simple network initiator based on Easytier",
|
||||||
"version": "1.5.2",
|
"version": "1.5.5",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"dev": "nuxt dev --dotenv env/.env.dev --host 0.0.0.0",
|
"dev": "nuxt dev --dotenv env/.env.dev --host 0.0.0.0",
|
||||||
"build": "nuxt generate --dotenv env/.env.prod",
|
"build": "nuxt generate --dotenv env/.env.prod",
|
||||||
@@ -11,32 +11,35 @@
|
|||||||
"release-win7": "node zip.js win7"
|
"release-win7": "node zip.js win7"
|
||||||
},
|
},
|
||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@element-plus/icons-vue": "^2.3.2",
|
"@element-plus/icons-vue": "2.3.2",
|
||||||
"@element-plus/nuxt": "1.1.4",
|
"@element-plus/nuxt": "1.1.4",
|
||||||
"@nuxtjs/tailwindcss": "6.13.2",
|
"@nuxtjs/tailwindcss": "6.13.2",
|
||||||
|
"@oxc-minify/binding-win32-x64-msvc": "^0.107.0",
|
||||||
|
"@oxc-parser/binding-win32-x64-msvc": "^0.107.0",
|
||||||
|
"@oxc-transform/binding-win32-x64-msvc": "^0.107.0",
|
||||||
"@pinia/nuxt": "0.11.2",
|
"@pinia/nuxt": "0.11.2",
|
||||||
"@tauri-apps/api": "2.9.0",
|
"@tauri-apps/api": "2.11.0",
|
||||||
"@tauri-apps/cli": "2.9.1",
|
"@tauri-apps/cli": "2.11.1",
|
||||||
"@tauri-apps/plugin-cli": "2.4.0",
|
"@tauri-apps/plugin-cli": "2.4.1",
|
||||||
"@tauri-apps/plugin-clipboard-manager": "2.3.0",
|
"@tauri-apps/plugin-clipboard-manager": "2.3.2",
|
||||||
"@tauri-apps/plugin-dialog": "2.4.0",
|
"@tauri-apps/plugin-dialog": "2.7.1",
|
||||||
"@tauri-apps/plugin-fs": "2.4.2",
|
"@tauri-apps/plugin-fs": "2.5.1",
|
||||||
"@tauri-apps/plugin-log": "2.7.0",
|
"@tauri-apps/plugin-log": "2.8.0",
|
||||||
"@tauri-apps/plugin-shell": "2.3.1",
|
"@tauri-apps/plugin-shell": "2.3.5",
|
||||||
"@tauri-apps/plugin-window-state": "2.4.0",
|
"@tauri-apps/plugin-window-state": "2.4.1",
|
||||||
"@types/lodash-es": "^4.17.12",
|
"@types/lodash-es": "4.17.12",
|
||||||
"@vitejs/plugin-vue-jsx": "5.1.1",
|
"@vitejs/plugin-vue-jsx": "5.1.1",
|
||||||
"@vueuse/core": "12.7.0",
|
"@vueuse/core": "12.7.0",
|
||||||
"archiver": "^7.0.1",
|
"archiver": "7.0.1",
|
||||||
"element-plus": "2.11.7",
|
"element-plus": "2.13.0",
|
||||||
"less": "4.2.1",
|
"less": "4.2.1",
|
||||||
"lodash-es": "^4.17.21",
|
"lodash-es": "4.17.21",
|
||||||
"nuxt": "3.19.2",
|
"nuxt": "3.20.2",
|
||||||
"pinia": "3.0.3",
|
"pinia": "3.0.4",
|
||||||
"pinia-plugin-persistedstate": "4.5.0",
|
"pinia-plugin-persistedstate": "4.7.1",
|
||||||
"postcss": "^8.4.38",
|
"postcss": "8.4.49",
|
||||||
"prettier": "3.6.2",
|
"prettier": "3.7.4",
|
||||||
"prettier-plugin-tailwindcss": "0.6.14"
|
"prettier-plugin-tailwindcss": "0.7.2"
|
||||||
},
|
},
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"is-ip": "^5.0.1"
|
"is-ip": "^5.0.1"
|
||||||
|
|||||||
+49
-3
@@ -37,6 +37,15 @@
|
|||||||
</ElButton>
|
</ElButton>
|
||||||
</div>
|
</div>
|
||||||
<div><ElCheckbox v-model="mainStore.config.enablePreventSleep">防止系统休眠(比如:屏幕会一直亮着)</ElCheckbox></div>
|
<div><ElCheckbox v-model="mainStore.config.enablePreventSleep">防止系统休眠(比如:屏幕会一直亮着)</ElCheckbox></div>
|
||||||
|
<div class="flex flex-nowrap items-center gap-[5px]">
|
||||||
|
<ElCheckbox v-model="mainStore.config.enableUdpBroadcastRelay">Windows UDP 广播中继</ElCheckbox>
|
||||||
|
<ElTooltip
|
||||||
|
content="开启后,虚拟网络内的其他设备可以接收到本机发出的 UDP 广播包,让依赖局域网广播的应用(如局域网游戏发现、DLNA 投屏)在虚拟网络中正常工作"
|
||||||
|
>
|
||||||
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
|
</ElTooltip>
|
||||||
|
<CoreVersionWarning version="2.6.4" />
|
||||||
|
</div>
|
||||||
<div class="flex flex-nowrap items-center gap-[5px]">
|
<div class="flex flex-nowrap items-center gap-[5px]">
|
||||||
<ElCheckbox v-model="mainStore.config.latencyfirst">使用低延迟模式</ElCheckbox>
|
<ElCheckbox v-model="mainStore.config.latencyfirst">使用低延迟模式</ElCheckbox>
|
||||||
<ElTooltip content="弱网环境下可能会导致网络延迟延迟忽高忽低">
|
<ElTooltip content="弱网环境下可能会导致网络延迟延迟忽高忽低">
|
||||||
@@ -98,14 +107,22 @@
|
|||||||
<CoreVersionWarning version="2.3.1" />
|
<CoreVersionWarning version="2.3.1" />
|
||||||
</div>
|
</div>
|
||||||
<ElDivider />
|
<ElDivider />
|
||||||
<div class="flex w-full flex-nowrap items-center gap-[5px] mb-[3px]">
|
<div class="mb-[3px] flex w-full flex-nowrap items-center gap-[5px]">
|
||||||
<ElCheckbox v-model="mainStore.config.tcpWhitelistEnable">TCP端口白名单</ElCheckbox>
|
<ElCheckbox v-model="mainStore.config.tcpWhitelistEnable">TCP端口白名单</ElCheckbox>
|
||||||
<ElInput class="flex-1" v-model="mainStore.config.tcpWhitelist" placeholder="支持单个端口(80)和范围(8000-9000)" />
|
<ElInput
|
||||||
|
class="flex-1"
|
||||||
|
v-model="mainStore.config.tcpWhitelist"
|
||||||
|
placeholder="支持单个端口(80)和范围(8000-9000)"
|
||||||
|
/>
|
||||||
<CoreVersionWarning version="2.4.2" />
|
<CoreVersionWarning version="2.4.2" />
|
||||||
</div>
|
</div>
|
||||||
<div class="flex w-full flex-nowrap items-center gap-[5px]">
|
<div class="flex w-full flex-nowrap items-center gap-[5px]">
|
||||||
<ElCheckbox v-model="mainStore.config.udpWhitelistEnable">UDP端口白名单</ElCheckbox>
|
<ElCheckbox v-model="mainStore.config.udpWhitelistEnable">UDP端口白名单</ElCheckbox>
|
||||||
<ElInput class="flex-1" v-model="mainStore.config.udpWhitelist" placeholder="支持单个端口(53)和范围(5000-6000)" />
|
<ElInput
|
||||||
|
class="flex-1"
|
||||||
|
v-model="mainStore.config.udpWhitelist"
|
||||||
|
placeholder="支持单个端口(53)和范围(5000-6000)"
|
||||||
|
/>
|
||||||
<CoreVersionWarning version="2.4.2" />
|
<CoreVersionWarning version="2.4.2" />
|
||||||
</div>
|
</div>
|
||||||
<div class="flex items-center gap-[10px]">
|
<div class="flex items-center gap-[10px]">
|
||||||
@@ -352,6 +369,35 @@
|
|||||||
打开日志目录
|
打开日志目录
|
||||||
</ElButton>
|
</ElButton>
|
||||||
</div>
|
</div>
|
||||||
|
<ElDivider />
|
||||||
|
<div class="flex flex-nowrap items-center gap-[5px]">
|
||||||
|
<ElCheckbox v-model="mainStore.config.enableUpnp">UPnP 端口映射</ElCheckbox>
|
||||||
|
<ElTooltip content="自动向路由器请求端口映射,默认开启,启动时无需额外配置">
|
||||||
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
|
</ElTooltip>
|
||||||
|
<CoreVersionWarning version="2.6.2" />
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-nowrap items-center gap-[5px]">
|
||||||
|
<ElCheckbox v-model="mainStore.config.ipv6PublicAddrProvider">公网 IPv6 地址前缀提供</ElCheckbox>
|
||||||
|
<ElTooltip content="持有公网 IPv6 前缀的节点可开启,让同网络下其他节点自动获取独立公网地址">
|
||||||
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
|
</ElTooltip>
|
||||||
|
<CoreVersionWarning version="2.6.2" />
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-nowrap items-center gap-[5px]">
|
||||||
|
<ElCheckbox v-model="mainStore.config.ipv6PublicAddrAuto">公网 IPv6 地址自动获取</ElCheckbox>
|
||||||
|
<ElTooltip content="从持有公网 IPv6 前缀的提供者节点自动获取独立公网地址">
|
||||||
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
|
</ElTooltip>
|
||||||
|
<CoreVersionWarning version="2.6.2" />
|
||||||
|
</div>
|
||||||
|
<div class="flex flex-nowrap items-center gap-[5px]">
|
||||||
|
<ElCheckbox v-model="mainStore.config.disableRelayData">禁用 Relay 数据转发</ElCheckbox>
|
||||||
|
<ElTooltip content="禁止节点转发 relay 数据流量而保留控制面功能,适用于不希望本节点承担中继带宽的场景">
|
||||||
|
<ElIcon><QuestionFilled /></ElIcon>
|
||||||
|
</ElTooltip>
|
||||||
|
<CoreVersionWarning version="2.6.3" />
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
|
|||||||
+56
-123
@@ -999,6 +999,7 @@
|
|||||||
mainStore.basePeers = uniq([...mainStore.config.serverUrl, ...mainStore.basePeers]);
|
mainStore.basePeers = uniq([...mainStore.config.serverUrl, ...mainStore.basePeers]);
|
||||||
};
|
};
|
||||||
|
|
||||||
|
let getMemeberTimer: number | null = null;
|
||||||
const listenObj: { [key: string]: any } = {
|
const listenObj: { [key: string]: any } = {
|
||||||
unListenOutPut: null,
|
unListenOutPut: null,
|
||||||
unListenThreadId: null,
|
unListenThreadId: null,
|
||||||
@@ -1009,31 +1010,34 @@
|
|||||||
server_thread_id: ref(null),
|
server_thread_id: ref(null),
|
||||||
async listenOutput() {
|
async listenOutput() {
|
||||||
// const appWindow = getCurrentWindow();
|
// const appWindow = getCurrentWindow();
|
||||||
const unListen = await listen<string>("command-output", async event => {
|
getMemeberTimer && clearInterval(getMemeberTimer);
|
||||||
data.isStart = true;
|
getMemeberTimer = setInterval(async () => {
|
||||||
// console.error(event.payload);
|
const [error, member] = await ATJ(invoke<string>("get_members_by_cli"));
|
||||||
if (event.payload) {
|
if(!data.isStart) {
|
||||||
data.startLoading = false;
|
getMemeberTimer && clearInterval(getMemeberTimer);
|
||||||
let ipv4 = /dhcp ip changed. old: None, new: Some\((\d+\.\d+\.\d+\.\d+).*\)/g.exec(event.payload as string)?.[1];
|
getMemeberTimer = null;
|
||||||
let devName = /tun device ready. dev: (.*)/g.exec(event.payload as string)?.[1];
|
ipReset();
|
||||||
if (mainStore.configStartEnable || mainStore.config.dhcp) {
|
return;
|
||||||
let configIpv4 = /ipv4\s.*=\s.*[\'\"](\d+\.\d+\.\d+\.\d+).*[\'\"]/g.exec(event.payload as string)?.[1];
|
}
|
||||||
if (configIpv4) {
|
if (!error && member !== "_EasytierGameCliFailedToConnect_") {
|
||||||
mainStore.config.ipv4 = configIpv4;
|
const memberJson = JSON.parse(member) as Member[];
|
||||||
}
|
const localData = memberJson.find(member => member?.cost == "Local");
|
||||||
}
|
const ipv4 = localData?.ipv4;
|
||||||
// if (event.payload.includes("peer connection removed")) {
|
if (localData && ipv4) {
|
||||||
// data.isSuccessGetIp = false;
|
mainStore.config.ipv4 = ipv4;
|
||||||
// }
|
|
||||||
if (event.payload.includes("new peer connection added") && !data.isSuccessGetIp) {
|
|
||||||
await setTrayRunState(tray, true);
|
await setTrayRunState(tray, true);
|
||||||
data.isSuccessGetIp = true;
|
data.isSuccessGetIp = true;
|
||||||
await setTrayTooltip(tray, `IP: ${mainStore.config.ipv4}`);
|
await setTrayTooltip(tray, `IP: ${mainStore.config.ipv4}`);
|
||||||
|
return;
|
||||||
}
|
}
|
||||||
if (ipv4) {
|
ipReset();
|
||||||
mainStore.config.ipv4 = ipv4;
|
}
|
||||||
await setTrayTooltip(tray, `IP: ${ipv4}`);
|
}, 1000);
|
||||||
}
|
const unListen = await listen<string>("command-output", async event => {
|
||||||
|
data.isStart = true;
|
||||||
|
if (event.payload) {
|
||||||
|
data.startLoading = false;
|
||||||
|
let devName = /tun device ready. dev: (.*)/g.exec(event.payload as string)?.[1];
|
||||||
if (
|
if (
|
||||||
devName &&
|
devName &&
|
||||||
mainStore.config.enableNetCardMetric &&
|
mainStore.config.enableNetCardMetric &&
|
||||||
@@ -1060,7 +1064,10 @@
|
|||||||
data.log = logArr.slice(start).join("\n");
|
data.log = logArr.slice(start).join("\n");
|
||||||
data.log += (event.payload as string) + "\n";
|
data.log += (event.payload as string) + "\n";
|
||||||
});
|
});
|
||||||
this.unListenOutPut = unListen;
|
this.unListenOutPut = () => {
|
||||||
|
getMemeberTimer && clearInterval(getMemeberTimer);
|
||||||
|
unListen();
|
||||||
|
};
|
||||||
},
|
},
|
||||||
async listenThreadId() {
|
async listenThreadId() {
|
||||||
const unListen = await listen("thread-id", event => {
|
const unListen = await listen("thread-id", event => {
|
||||||
@@ -1402,101 +1409,6 @@
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
// 过滤可用节点的函数
|
|
||||||
const filterAvailableNodes = (nodes: NodeItem[]): NodeItem[] => {
|
|
||||||
return nodes.filter(node => {
|
|
||||||
// 基本条件:节点必须激活且被批准
|
|
||||||
if (!node.is_active || !node.is_approved) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 健康状态检查
|
|
||||||
if (node.current_health_status !== "healthy") {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 使用率检查:使用率不能超过95%
|
|
||||||
if (node.usage_percentage > 95) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 24小时健康率检查:必须大于90%
|
|
||||||
if (node.health_percentage_24h < 90) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 响应时间检查:响应时间不能超过60秒
|
|
||||||
if (node.last_response_time > 60000) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 连接数检查:当前连接数不能超过最大连接数的90%
|
|
||||||
if (node.current_connections > node.max_connections * 0.9) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 必须有有效的地址
|
|
||||||
if (!node.address || !node.host || !node.port) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
return true;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// 按优先级排序节点的函数
|
|
||||||
const sortNodesByPriority = (nodes: NodeItem[]): NodeItem[] => {
|
|
||||||
return nodes.sort((a, b) => {
|
|
||||||
// 优先级排序规则:
|
|
||||||
// 1. 响应时间越短越好
|
|
||||||
// 2. 使用率越低越好
|
|
||||||
// 3. 24小时健康率越高越好
|
|
||||||
// 4. 当前连接数越少越好
|
|
||||||
|
|
||||||
// 响应时间权重最高
|
|
||||||
const responseTimeDiff = a.last_response_time - b.last_response_time;
|
|
||||||
if (Math.abs(responseTimeDiff) > 1000) {
|
|
||||||
// 如果响应时间差异超过1秒
|
|
||||||
return responseTimeDiff;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 使用率权重次之
|
|
||||||
const usageDiff = a.usage_percentage - b.usage_percentage;
|
|
||||||
if (Math.abs(usageDiff) > 5) {
|
|
||||||
// 如果使用率差异超过5%
|
|
||||||
return usageDiff;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 24小时健康率
|
|
||||||
const healthDiff = b.health_percentage_24h - a.health_percentage_24h;
|
|
||||||
if (Math.abs(healthDiff) > 1) {
|
|
||||||
// 如果健康率差异超过1%
|
|
||||||
return healthDiff;
|
|
||||||
}
|
|
||||||
|
|
||||||
// 当前连接数
|
|
||||||
return a.current_connections - b.current_connections;
|
|
||||||
});
|
|
||||||
};
|
|
||||||
|
|
||||||
// 将节点添加到服务器列表的函数
|
|
||||||
const addNodesToServerList = (nodes: NodeItem[]) => {
|
|
||||||
// 提取服务器地址
|
|
||||||
const serverAddresses = nodes.map(node => node.address.replace(`${node.protocol}://`, ""));
|
|
||||||
|
|
||||||
// 去重并添加到基础服务器列表
|
|
||||||
const uniqueAddresses = uniq([...serverAddresses, ...mainStore.basePeers]);
|
|
||||||
mainStore.basePeers = uniqueAddresses;
|
|
||||||
|
|
||||||
// 如果当前没有选择服务器,自动选择第一个最佳节点
|
|
||||||
if (mainStore.config.serverUrl.length === 0 && serverAddresses.length > 0) {
|
|
||||||
mainStore.config.serverUrl = [serverAddresses[0]];
|
|
||||||
console.log(`自动选择最佳服务器: ${serverAddresses[0]}`);
|
|
||||||
}
|
|
||||||
|
|
||||||
console.log(`已添加 ${serverAddresses.length} 个可用服务器到列表`);
|
|
||||||
};
|
|
||||||
|
|
||||||
let logsTimer: number | null = null;
|
let logsTimer: number | null = null;
|
||||||
let serverLogsTimer: number | null = null;
|
let serverLogsTimer: number | null = null;
|
||||||
let cidrTimer: number | null = null;
|
let cidrTimer: number | null = null;
|
||||||
@@ -1640,7 +1552,9 @@
|
|||||||
return /^\d+\.\d+\.\d+\.\d+\/\d+$/g.test(cidr);
|
return /^\d+\.\d+\.\d+\.\d+\/\d+$/g.test(cidr);
|
||||||
});
|
});
|
||||||
if (newformatProxyNetworks.length > 0) {
|
if (newformatProxyNetworks.length > 0) {
|
||||||
args.push("--proxy-networks", ...newformatProxyNetworks);
|
for(const cidr of newformatProxyNetworks) {
|
||||||
|
args.push("-n", cidr);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
mainStore.config.proxyNetworks = formatProxyNetworks.join("\n");
|
mainStore.config.proxyNetworks = formatProxyNetworks.join("\n");
|
||||||
}
|
}
|
||||||
@@ -1689,6 +1603,21 @@
|
|||||||
if (mainStore.config.disableQuicInput) {
|
if (mainStore.config.disableQuicInput) {
|
||||||
args.push("--disable-quic-input", "true");
|
args.push("--disable-quic-input", "true");
|
||||||
}
|
}
|
||||||
|
if (mainStore.config.enableUdpBroadcastRelay) {
|
||||||
|
args.push("--enable-udp-broadcast-relay", "true");
|
||||||
|
}
|
||||||
|
if (!mainStore.config.enableUpnp) {
|
||||||
|
args.push("--disable-upnp", "true");
|
||||||
|
}
|
||||||
|
if (mainStore.config.ipv6PublicAddrProvider) {
|
||||||
|
args.push("--ipv6-public-addr-provider", "true");
|
||||||
|
}
|
||||||
|
if (mainStore.config.ipv6PublicAddrAuto) {
|
||||||
|
args.push("--ipv6-public-addr-auto", "true");
|
||||||
|
}
|
||||||
|
if (mainStore.config.disableRelayData) {
|
||||||
|
args.push("--disable-relay-data", "true");
|
||||||
|
}
|
||||||
if (mainStore.config.bindDeviceEnable) {
|
if (mainStore.config.bindDeviceEnable) {
|
||||||
args.push("--bind-device", "true");
|
args.push("--bind-device", "true");
|
||||||
}
|
}
|
||||||
@@ -1724,12 +1653,17 @@
|
|||||||
return args;
|
return args;
|
||||||
};
|
};
|
||||||
|
|
||||||
const reset = async () => {
|
const ipReset = async () => {
|
||||||
data.isStart = false;
|
|
||||||
data.isSuccessGetIp = false;
|
data.isSuccessGetIp = false;
|
||||||
if (mainStore.config.dhcp) {
|
if (mainStore.config.dhcp) {
|
||||||
mainStore.config.ipv4 = "";
|
mainStore.config.ipv4 = "";
|
||||||
}
|
}
|
||||||
|
await setTrayRunState(tray, false);
|
||||||
|
await setTrayTooltip(tray);
|
||||||
|
};
|
||||||
|
|
||||||
|
const reset = async () => {
|
||||||
|
data.isStart = false;
|
||||||
const memberDialog = await getAllWebviewWindows();
|
const memberDialog = await getAllWebviewWindows();
|
||||||
const memberDialogs = memberDialog.filter(item => item.label === "member");
|
const memberDialogs = memberDialog.filter(item => item.label === "member");
|
||||||
if (memberDialogs && memberDialogs.length > 0) {
|
if (memberDialogs && memberDialogs.length > 0) {
|
||||||
@@ -1741,9 +1675,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
await setTrayRunState(tray, false);
|
|
||||||
await setTrayTooltip(tray);
|
|
||||||
await unListenAll();
|
await unListenAll();
|
||||||
|
await ipReset();
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleConnection = async () => {
|
const handleConnection = async () => {
|
||||||
@@ -2110,7 +2043,7 @@
|
|||||||
|
|
||||||
const handleShowMemberDialog = async () => {
|
const handleShowMemberDialog = async () => {
|
||||||
if (!data.isStart) {
|
if (!data.isStart) {
|
||||||
return ElMessage.warning("请先开始联机");
|
return ElMessage.warning("请先启动联机");
|
||||||
}
|
}
|
||||||
// if (!mainStore.config.ipv4) {
|
// if (!mainStore.config.ipv4) {
|
||||||
// return ElMessage.warning("请等待获取IP");
|
// return ElMessage.warning("请等待获取IP");
|
||||||
|
|||||||
+10
-73
@@ -1,6 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="h-full overflow-auto">
|
<div class="h-full overflow-auto">
|
||||||
<div class="w-[1200px]">
|
<div class="max-w-[2000px]">
|
||||||
<ElText
|
<ElText
|
||||||
size="small"
|
size="small"
|
||||||
v-if="!data.member || data.member.length <= 0"
|
v-if="!data.member || data.member.length <= 0"
|
||||||
@@ -19,7 +19,7 @@
|
|||||||
prop="hostname"
|
prop="hostname"
|
||||||
>
|
>
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
<div class="whitespace-pre-wrap">
|
<div :class="`whitespace-pre-wrap`">
|
||||||
<div>
|
<div>
|
||||||
{{
|
{{
|
||||||
(row.hostname || "").toLowerCase().includes("publicserver")
|
(row.hostname || "").toLowerCase().includes("publicserver")
|
||||||
@@ -44,7 +44,7 @@
|
|||||||
</ElTableColumn>
|
</ElTableColumn>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
width="90"
|
width="70"
|
||||||
prop="cost"
|
prop="cost"
|
||||||
label="方式"
|
label="方式"
|
||||||
>
|
>
|
||||||
@@ -87,7 +87,7 @@
|
|||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
prop="lat_ms"
|
prop="lat_ms"
|
||||||
width="100"
|
width="80"
|
||||||
label="延迟/ms"
|
label="延迟/ms"
|
||||||
:sort-method="sortLatMs"
|
:sort-method="sortLatMs"
|
||||||
:sort-orders="['ascending', 'descending', null]"
|
:sort-orders="['ascending', 'descending', null]"
|
||||||
@@ -98,7 +98,7 @@
|
|||||||
</ElTableColumn>
|
</ElTableColumn>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
width="100"
|
width="70"
|
||||||
prop="loss_rate"
|
prop="loss_rate"
|
||||||
label="丢包率"
|
label="丢包率"
|
||||||
>
|
>
|
||||||
@@ -114,12 +114,12 @@
|
|||||||
</ElTableColumn>
|
</ElTableColumn>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
sortable
|
sortable
|
||||||
width="110"
|
width="100"
|
||||||
label="NAT类型"
|
label="NAT类型"
|
||||||
prop="nat_type"
|
prop="nat_type"
|
||||||
>
|
>
|
||||||
<template #default="{ row }">
|
<template #default="{ row }">
|
||||||
{{ natMaps[row.nat_type.toLowerCase() as natKyes] || row.nat_type || "-" }}
|
{{ natMaps[row.nat_type.toLowerCase() as NATKyes] || row.nat_type || "-" }}
|
||||||
</template>
|
</template>
|
||||||
</ElTableColumn>
|
</ElTableColumn>
|
||||||
<ElTableColumn
|
<ElTableColumn
|
||||||
@@ -156,65 +156,10 @@
|
|||||||
<script setup lang="ts">
|
<script setup lang="ts">
|
||||||
import { invoke } from "@tauri-apps/api/core";
|
import { invoke } from "@tauri-apps/api/core";
|
||||||
import { reactive, onMounted, onBeforeUnmount, computed } from "vue";
|
import { reactive, onMounted, onBeforeUnmount, computed } from "vue";
|
||||||
import { ATJ, parseCliInfo } from "@/utils";
|
import { ATJ } from "@/utils";
|
||||||
import { ElConfirmDanger } from "~/utils/element";
|
import { ElConfirmDanger } from "~/utils/element";
|
||||||
import { getCurrentWindow } from "@tauri-apps/api/window";
|
import { getCurrentWindow } from "@tauri-apps/api/window";
|
||||||
import { endsWith, isNaN } from "lodash-es";
|
import { isNaN } from "lodash-es";
|
||||||
|
|
||||||
type Member = {
|
|
||||||
cidr: string;
|
|
||||||
ipv4: string;
|
|
||||||
hostname: string;
|
|
||||||
cost: string;
|
|
||||||
lat_ms: string;
|
|
||||||
loss_rate: string;
|
|
||||||
rx_bytes: string;
|
|
||||||
tx_bytes: string;
|
|
||||||
tunnel_proto: string;
|
|
||||||
nat_type: string;
|
|
||||||
id: string;
|
|
||||||
version: string;
|
|
||||||
connections_addrs: string[];
|
|
||||||
proxy?: [string, "Connected" | "Closed"];
|
|
||||||
};
|
|
||||||
|
|
||||||
type ConnectionsType = {
|
|
||||||
route: {
|
|
||||||
peer_id: number;
|
|
||||||
ipv4_addr: string | null;
|
|
||||||
next_hop_peer_id: number;
|
|
||||||
cost: number;
|
|
||||||
path_latency: number;
|
|
||||||
proxy_cidrs: string[];
|
|
||||||
hostname: string;
|
|
||||||
stun_info: {
|
|
||||||
udp_nat_type: number;
|
|
||||||
tcp_nat_type: number;
|
|
||||||
last_update_time: number;
|
|
||||||
public_ip: string[];
|
|
||||||
min_port: number;
|
|
||||||
max_port: number;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
peer: {
|
|
||||||
peer_id: number;
|
|
||||||
conns: {
|
|
||||||
conn_id: string;
|
|
||||||
my_peer_id: number;
|
|
||||||
peer_id: number;
|
|
||||||
features: string[];
|
|
||||||
tunnel: {
|
|
||||||
tunnel_type: string;
|
|
||||||
local_addr: {
|
|
||||||
url: string;
|
|
||||||
};
|
|
||||||
remote_addr: {
|
|
||||||
url: string;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
}[];
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
const natMaps = {
|
const natMaps = {
|
||||||
unknown: "未知",
|
unknown: "未知",
|
||||||
@@ -229,15 +174,7 @@
|
|||||||
symUdpfirewall: "nat4-udpfirewall"
|
symUdpfirewall: "nat4-udpfirewall"
|
||||||
};
|
};
|
||||||
|
|
||||||
type Proxy = {
|
type NATKyes = keyof typeof natMaps;
|
||||||
src: string;
|
|
||||||
dst: string;
|
|
||||||
start_time: string;
|
|
||||||
state: "Connected" | "Closed";
|
|
||||||
transport_type: string;
|
|
||||||
};
|
|
||||||
|
|
||||||
type natKyes = keyof typeof natMaps;
|
|
||||||
|
|
||||||
const data = reactive<{ member: Member[]; proxy: Proxy[] }>({
|
const data = reactive<{ member: Member[]; proxy: Proxy[] }>({
|
||||||
member: [],
|
member: [],
|
||||||
|
|||||||
@@ -44,6 +44,18 @@
|
|||||||
>
|
>
|
||||||
<ElCheckbox v-model="mainStore.serverConfig.relayAllPeerrpc">转发所有对等节点的RPC数据包</ElCheckbox>
|
<ElCheckbox v-model="mainStore.serverConfig.relayAllPeerrpc">转发所有对等节点的RPC数据包</ElCheckbox>
|
||||||
</ElTooltip>
|
</ElTooltip>
|
||||||
|
<ElTooltip
|
||||||
|
placement="top"
|
||||||
|
content="持有公网 IPv6 前缀时开启,让同网络下其他节点自动获取独立公网地址"
|
||||||
|
>
|
||||||
|
<ElCheckbox v-model="mainStore.serverConfig.ipv6PublicAddrProvider">公网IPv6地址前缀提供</ElCheckbox>
|
||||||
|
</ElTooltip>
|
||||||
|
<ElTooltip
|
||||||
|
placement="top"
|
||||||
|
content="禁止节点转发 relay 数据流量而保留控制面功能,适用于不希望本节点承担中继带宽的场景"
|
||||||
|
>
|
||||||
|
<ElCheckbox v-model="mainStore.serverConfig.disableRelayData">禁用Relay数据转发</ElCheckbox>
|
||||||
|
</ElTooltip>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|||||||
Generated
+2489
-3082
File diff suppressed because it is too large
Load Diff
@@ -1,3 +0,0 @@
|
|||||||
{
|
|
||||||
"extends": "../.nuxt/tsconfig.server.json"
|
|
||||||
}
|
|
||||||
Generated
+1210
-1290
File diff suppressed because it is too large
Load Diff
+11
-11
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "easytier-game"
|
name = "easytier-game"
|
||||||
version = "1.5.2"
|
version = "1.5.5"
|
||||||
homepage = "https://github.com/EasyTier/EasyTier"
|
homepage = "https://github.com/EasyTier/EasyTier"
|
||||||
repository = "https://github.com/EasyTier/EasytierGame"
|
repository = "https://github.com/EasyTier/EasytierGame"
|
||||||
description = "A simple network initiator based on Easytier"
|
description = "A simple network initiator based on Easytier"
|
||||||
@@ -18,7 +18,7 @@ name = "app_lib"
|
|||||||
crate-type = ["staticlib", "cdylib", "rlib"]
|
crate-type = ["staticlib", "cdylib", "rlib"]
|
||||||
|
|
||||||
[build-dependencies]
|
[build-dependencies]
|
||||||
tauri-build = { version = "2.5.1", features = [] }
|
tauri-build = { version = "2.6.1", features = [] }
|
||||||
# prost-build = "0.13.2"
|
# prost-build = "0.13.2"
|
||||||
|
|
||||||
[target.x86_64-pc-windows-msvc.build-dependencies]
|
[target.x86_64-pc-windows-msvc.build-dependencies]
|
||||||
@@ -28,24 +28,24 @@ thunk-rs = { git = "https://github.com/easytier/thunk.git", default-features = f
|
|||||||
serde_json = "1.0.137"
|
serde_json = "1.0.137"
|
||||||
serde = { version = "1.0.217", features = ["derive"] }
|
serde = { version = "1.0.217", features = ["derive"] }
|
||||||
log = "0.4.26"
|
log = "0.4.26"
|
||||||
tauri = { version = "2.9.1", features = [ "protocol-asset",
|
tauri = { version = "2.11.1", features = [ "protocol-asset",
|
||||||
"tray-icon",
|
"tray-icon",
|
||||||
"image-png",
|
"image-png",
|
||||||
"image-ico"
|
"image-ico"
|
||||||
] }
|
] }
|
||||||
|
|
||||||
tauri-plugin-log = "2.7.0"
|
tauri-plugin-log = "2.8.0"
|
||||||
tauri-plugin-shell = "2.3.1"
|
tauri-plugin-shell = "2.3.5"
|
||||||
reqwest = { version = "0.12.12", features = ["json"] }
|
reqwest = { version = "0.12.12", features = ["json"] }
|
||||||
zip = "2.2.3"
|
zip = "2.2.3"
|
||||||
sysinfo = '0.33.1'
|
sysinfo = '0.33.1'
|
||||||
# planif = { git = "https://github.com/mattrobineau/planif", tag = "1.0.1" }
|
# planif = { git = "https://github.com/mattrobineau/planif", tag = "1.0.1" }
|
||||||
whoami = "1.5.2"
|
whoami = "1.5.2"
|
||||||
tauri-plugin-fs = "2.4.2"
|
tauri-plugin-fs = "2.5.1"
|
||||||
tauri-plugin-clipboard-manager = "2.3.0"
|
tauri-plugin-clipboard-manager = "2.3.2"
|
||||||
rand = "0.9.0"
|
rand = "0.9.0"
|
||||||
tokio = { version = "1.45.1", features = ["process"] }
|
tokio = { version = "1.45.1", features = ["process"] }
|
||||||
tauri-plugin-dialog = "2.4.0"
|
tauri-plugin-dialog = "2.7.1"
|
||||||
# prost = "0.13"
|
# prost = "0.13"
|
||||||
# prost-types = "0.13"
|
# prost-types = "0.13"
|
||||||
hashbrown = "0.15.2"
|
hashbrown = "0.15.2"
|
||||||
@@ -56,6 +56,6 @@ version = "0.61.3"
|
|||||||
features = ["Win32_System_TaskScheduler", "Win32_System_Com", "Win32_System_Power", "Win32_NetworkManagement_IpHelper", "Win32_NetworkManagement_Ndis", "Win32_Networking_WinSock"]
|
features = ["Win32_System_TaskScheduler", "Win32_System_Com", "Win32_System_Power", "Win32_NetworkManagement_IpHelper", "Win32_NetworkManagement_Ndis", "Win32_Networking_WinSock"]
|
||||||
|
|
||||||
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
|
[target."cfg(not(any(target_os = \"android\", target_os = \"ios\")))".dependencies]
|
||||||
tauri-plugin-cli = "2.4.0"
|
tauri-plugin-cli = "2.4.1"
|
||||||
tauri-plugin-single-instance = "2.3.4"
|
tauri-plugin-single-instance = "2.4.2"
|
||||||
tauri-plugin-window-state = "2.4.0"
|
tauri-plugin-window-state = "2.4.1"
|
||||||
|
|||||||
Binary file not shown.
@@ -37,6 +37,11 @@
|
|||||||
"enableNetCardMetric": true, // 启用自定义网卡跃点
|
"enableNetCardMetric": true, // 启用自定义网卡跃点
|
||||||
"netCardMetricValue": 1, // 网卡跃点
|
"netCardMetricValue": 1, // 网卡跃点
|
||||||
"enablePreventSleep": false, // 启用防止睡眠
|
"enablePreventSleep": false, // 启用防止睡眠
|
||||||
|
"enableUdpBroadcastRelay": true, // Windows UDP广播中继
|
||||||
|
"enableUpnp": true, // UPnP端口映射
|
||||||
|
"ipv6PublicAddrProvider": false, // 公网IPv6地址前缀提供
|
||||||
|
"ipv6PublicAddrAuto": false, // 公网IPv6地址自动获取
|
||||||
|
"disableRelayData": false, // 禁用Relay数据转发
|
||||||
"compression": "none", // 压缩算法
|
"compression": "none", // 压缩算法
|
||||||
"enableKcpProxy": true, // 启用kcp代理,就不能启用quic代理
|
"enableKcpProxy": true, // 启用kcp代理,就不能启用quic代理
|
||||||
"disableKcpInput": false, // 禁用kcp输入
|
"disableKcpInput": false, // 禁用kcp输入
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
+4
-35
@@ -1,7 +1,7 @@
|
|||||||
use reqwest::{Client, Error};
|
use reqwest::{Client, Error};
|
||||||
// use futures_util::StreamExt;
|
// use futures_util::StreamExt;
|
||||||
use serde::{Deserialize, Serialize};
|
use serde::{Deserialize};
|
||||||
use std::collections::HashMap;
|
// use std::collections::HashMap;
|
||||||
use std::fs::{self, File};
|
use std::fs::{self, File};
|
||||||
use std::io::{BufRead, BufReader, Write};
|
use std::io::{BufRead, BufReader, Write};
|
||||||
use std::os::windows::process::CommandExt;
|
use std::os::windows::process::CommandExt;
|
||||||
@@ -237,38 +237,6 @@ fn get_tool_exe_path(path: &str) -> String {
|
|||||||
return tool_path;
|
return tool_path;
|
||||||
}
|
}
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
|
||||||
struct RoutePeerInfo {
|
|
||||||
peer_id: u64,
|
|
||||||
cost: u64,
|
|
||||||
hostname: Option<String>,
|
|
||||||
udp_stun_info: String,
|
|
||||||
easytier_version: String,
|
|
||||||
network_length: u64,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
|
||||||
struct RouteTable {
|
|
||||||
peer_infos: HashMap<u32, RoutePeerInfo>,
|
|
||||||
ipv4_peer_id_map: HashMap<String, u64>,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
|
||||||
struct PeerRouteServiceImpl {
|
|
||||||
route_table_with_cost: RouteTable,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
|
||||||
struct PeerRoute {
|
|
||||||
my_peer_id: u64,
|
|
||||||
service_impl: PeerRouteServiceImpl,
|
|
||||||
}
|
|
||||||
|
|
||||||
#[derive(Serialize, Deserialize, Debug)]
|
|
||||||
struct MyResponse {
|
|
||||||
response: PeerRoute,
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
#[tauri::command(rename_all = "snake_case")]
|
#[tauri::command(rename_all = "snake_case")]
|
||||||
async fn get_members_by_cli() -> String {
|
async fn get_members_by_cli() -> String {
|
||||||
@@ -875,6 +843,7 @@ fn autostart(enabled: bool) -> std::result::Result<(), Box<dyn std::error::Error
|
|||||||
exec_action.SetPath(&BSTR::from(exe_path))?;
|
exec_action.SetPath(&BSTR::from(exe_path))?;
|
||||||
exec_action.SetArguments(&BSTR::from("--task-auto-start"))?;
|
exec_action.SetArguments(&BSTR::from("--task-auto-start"))?;
|
||||||
|
|
||||||
|
// 设置任务权限为当前用户
|
||||||
let principal = task_definition.Principal()?;
|
let principal = task_definition.Principal()?;
|
||||||
principal.SetUserId(&BSTR::from(whoami::username().as_str()))?;
|
principal.SetUserId(&BSTR::from(whoami::username().as_str()))?;
|
||||||
principal.SetLogonType(TASK_LOGON_INTERACTIVE_TOKEN)?;
|
principal.SetLogonType(TASK_LOGON_INTERACTIVE_TOKEN)?;
|
||||||
@@ -883,7 +852,7 @@ fn autostart(enabled: bool) -> std::result::Result<(), Box<dyn std::error::Error
|
|||||||
// 设置任务设置
|
// 设置任务设置
|
||||||
let settings = task_definition.Settings()?;
|
let settings = task_definition.Settings()?;
|
||||||
settings.SetEnabled(VARIANT_BOOL::from(true))?;
|
settings.SetEnabled(VARIANT_BOOL::from(true))?;
|
||||||
settings.SetCompatibility(TASK_COMPATIBILITY_V2)?; // Windows 7
|
settings.SetCompatibility(TASK_COMPATIBILITY_V2_1)?; // Windows 7
|
||||||
settings.SetStartWhenAvailable(VARIANT_BOOL::from(true))?;
|
settings.SetStartWhenAvailable(VARIANT_BOOL::from(true))?;
|
||||||
// settings.SetHidden(VARIANT_BOOL::from(true))?; // 注释掉让任务可见
|
// settings.SetHidden(VARIANT_BOOL::from(true))?; // 注释掉让任务可见
|
||||||
settings.SetExecutionTimeLimit(&BSTR::from("PT0S"))?;
|
settings.SetExecutionTimeLimit(&BSTR::from("PT0S"))?;
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
|
||||||
"productName": "easytier-game",
|
"productName": "easytier-game",
|
||||||
"version": "1.5.2",
|
"version": "1.5.5",
|
||||||
"identifier": "com.tauri.easytier-game",
|
"identifier": "com.tauri.easytier-game",
|
||||||
|
|
||||||
"build": {
|
"build": {
|
||||||
@@ -12,7 +12,7 @@
|
|||||||
"app": {
|
"app": {
|
||||||
"windows": [
|
"windows": [
|
||||||
{
|
{
|
||||||
"title": "easytier-game 1.5.2",
|
"title": "easytier-game 1.5.5",
|
||||||
"label": "main",
|
"label": "main",
|
||||||
"minWidth": 340,
|
"minWidth": 340,
|
||||||
"width": 340,
|
"width": 340,
|
||||||
|
|||||||
@@ -44,6 +44,11 @@ const store = defineStore("main", {
|
|||||||
enableNetCardMetric: true, //启用网卡自定义跃点
|
enableNetCardMetric: true, //启用网卡自定义跃点
|
||||||
netCardMetricValue: 1, //自定义网卡跃点值
|
netCardMetricValue: 1, //自定义网卡跃点值
|
||||||
enablePreventSleep: false, //组织系统休眠
|
enablePreventSleep: false, //组织系统休眠
|
||||||
|
enableUdpBroadcastRelay: true, //Windows UDP广播中继
|
||||||
|
enableUpnp: true, //UPnP端口映射
|
||||||
|
ipv6PublicAddrProvider: false, //公网IPv6地址前缀提供
|
||||||
|
ipv6PublicAddrAuto: false, //公网IPv6地址自动获取
|
||||||
|
disableRelayData: false, //禁用Relay数据转发
|
||||||
compression: "none", //加密算法
|
compression: "none", //加密算法
|
||||||
enableKcpProxy: true, //启用kcp代理 默认开启
|
enableKcpProxy: true, //启用kcp代理 默认开启
|
||||||
disableKcpInput: false, //禁用kcp输入
|
disableKcpInput: false, //禁用kcp输入
|
||||||
@@ -66,6 +71,8 @@ const store = defineStore("main", {
|
|||||||
privateMode: false, //是否启用私有模式
|
privateMode: false, //是否启用私有模式
|
||||||
privateNetworkName: "", // 私有模式房间名
|
privateNetworkName: "", // 私有模式房间名
|
||||||
privateNetworkPassword: "", // 私有模式密码
|
privateNetworkPassword: "", // 私有模式密码
|
||||||
|
ipv6PublicAddrProvider: false, //公网IPv6地址前缀提供
|
||||||
|
disableRelayData: false, //禁用Relay数据转发
|
||||||
},
|
},
|
||||||
cidrEnable: false,
|
cidrEnable: false,
|
||||||
proxyForwardBySystem: false, // 是否通过系统内核转发子网代理数据包,禁用内置NAT
|
proxyForwardBySystem: false, // 是否通过系统内核转发子网代理数据包,禁用内置NAT
|
||||||
@@ -150,6 +157,12 @@ const store = defineStore("main", {
|
|||||||
|
|
||||||
"config.privateMode",
|
"config.privateMode",
|
||||||
|
|
||||||
|
"config.enableUdpBroadcastRelay",
|
||||||
|
"config.enableUpnp",
|
||||||
|
"config.ipv6PublicAddrProvider",
|
||||||
|
"config.ipv6PublicAddrAuto",
|
||||||
|
"config.disableRelayData",
|
||||||
|
|
||||||
"serverConfig.autoStart",
|
"serverConfig.autoStart",
|
||||||
// 'serverConfig.enableListener',
|
// 'serverConfig.enableListener',
|
||||||
"serverConfig.enableWhiteList",
|
"serverConfig.enableWhiteList",
|
||||||
@@ -159,6 +172,8 @@ const store = defineStore("main", {
|
|||||||
"serverConfig.privateMode",
|
"serverConfig.privateMode",
|
||||||
"serverConfig.privateNetworkName",
|
"serverConfig.privateNetworkName",
|
||||||
"serverConfig.privateNetworkPassword",
|
"serverConfig.privateNetworkPassword",
|
||||||
|
"serverConfig.ipv6PublicAddrProvider",
|
||||||
|
"serverConfig.disableRelayData",
|
||||||
|
|
||||||
"cidrEnable",
|
"cidrEnable",
|
||||||
"proxyForwardBySystem",
|
"proxyForwardBySystem",
|
||||||
|
|||||||
Vendored
+62
@@ -57,3 +57,65 @@ interface NodesResponse {
|
|||||||
error: string | null;
|
error: string | null;
|
||||||
message: string | null;
|
message: string | null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
type Member = {
|
||||||
|
cidr: string;
|
||||||
|
ipv4: string;
|
||||||
|
hostname: string;
|
||||||
|
cost: string;
|
||||||
|
lat_ms: string;
|
||||||
|
loss_rate: string;
|
||||||
|
rx_bytes: string;
|
||||||
|
tx_bytes: string;
|
||||||
|
tunnel_proto: string;
|
||||||
|
nat_type: string;
|
||||||
|
id: string;
|
||||||
|
version: string;
|
||||||
|
connections_addrs: string[];
|
||||||
|
proxy?: [string, "Connected" | "Closed"];
|
||||||
|
};
|
||||||
|
|
||||||
|
type ConnectionsType = {
|
||||||
|
route: {
|
||||||
|
peer_id: number;
|
||||||
|
ipv4_addr: string | null;
|
||||||
|
next_hop_peer_id: number;
|
||||||
|
cost: number;
|
||||||
|
path_latency: number;
|
||||||
|
proxy_cidrs: string[];
|
||||||
|
hostname: string;
|
||||||
|
stun_info: {
|
||||||
|
udp_nat_type: number;
|
||||||
|
tcp_nat_type: number;
|
||||||
|
last_update_time: number;
|
||||||
|
public_ip: string[];
|
||||||
|
min_port: number;
|
||||||
|
max_port: number;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
peer: {
|
||||||
|
peer_id: number;
|
||||||
|
conns: {
|
||||||
|
conn_id: string;
|
||||||
|
my_peer_id: number;
|
||||||
|
peer_id: number;
|
||||||
|
features: string[];
|
||||||
|
tunnel: {
|
||||||
|
tunnel_type: string;
|
||||||
|
local_addr: {
|
||||||
|
url: string;
|
||||||
|
};
|
||||||
|
remote_addr: {
|
||||||
|
url: string;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}[];
|
||||||
|
};
|
||||||
|
};
|
||||||
|
type Proxy = {
|
||||||
|
src: string;
|
||||||
|
dst: string;
|
||||||
|
start_time: string;
|
||||||
|
state: "Connected" | "Closed";
|
||||||
|
transport_type: string;
|
||||||
|
};
|
||||||
|
|||||||
+1
-1
@@ -94,7 +94,7 @@ export const ATJ = (promise: Promise<any>, errorExt: string | undefined = undefi
|
|||||||
});
|
});
|
||||||
};
|
};
|
||||||
|
|
||||||
const _supportProtocols = ["tcp", "udp", "ws", "wss", "srv", "schema"];
|
const _supportProtocols = ["tcp", "udp", "ws", "wss", "srv", "schema", "txt"];
|
||||||
|
|
||||||
export const supportProtocols = () => {
|
export const supportProtocols = () => {
|
||||||
return _supportProtocols.slice();
|
return _supportProtocols.slice();
|
||||||
|
|||||||
Binary file not shown.
Reference in New Issue
Block a user