From 72d94c62f4bc3b2c59795ad5201951beb90383e9 Mon Sep 17 00:00:00 2001 From: Tunglies <77394545+Tunglies@users.noreply.github.com> Date: Tue, 4 Nov 2025 07:11:44 +0800 Subject: [PATCH] Revert "modify the port detection range to prevent the use of system ports (#3587)" This reverts commit d3dbc11b1b4f9c436c0a5dc50c412d3e3f285d32. --- src/hooks/use-clash.ts | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/src/hooks/use-clash.ts b/src/hooks/use-clash.ts index 483f197d..85b3faed 100644 --- a/src/hooks/use-clash.ts +++ b/src/hooks/use-clash.ts @@ -70,8 +70,8 @@ export const useClashInfo = () => { if (patch["redir-port"]) { const port = patch["redir-port"]; - if (port < 1111) { - throw new Error("The port should not < 1111"); + if (port < 1000) { + throw new Error("The port should not < 1000"); } if (port > 65536) { throw new Error("The port should not > 65536"); @@ -80,8 +80,8 @@ export const useClashInfo = () => { if (patch["tproxy-port"]) { const port = patch["tproxy-port"]; - if (port < 1111) { - throw new Error("The port should not < 1111"); + if (port < 1000) { + throw new Error("The port should not < 1000"); } if (port > 65536) { throw new Error("The port should not > 65536"); @@ -90,8 +90,8 @@ export const useClashInfo = () => { if (patch["mixed-port"]) { const port = patch["mixed-port"]; - if (port < 1111) { - throw new Error("The port should not < 1111"); + if (port < 1000) { + throw new Error("The port should not < 1000"); } if (port > 65536) { throw new Error("The port should not > 65536"); @@ -100,8 +100,8 @@ export const useClashInfo = () => { if (patch["socks-port"]) { const port = patch["socks-port"]; - if (port < 1111) { - throw new Error("The port should not < 1111"); + if (port < 1000) { + throw new Error("The port should not < 1000"); } if (port > 65536) { throw new Error("The port should not > 65536"); @@ -110,8 +110,8 @@ export const useClashInfo = () => { if (patch["port"]) { const port = patch["port"]; - if (port < 1111) { - throw new Error("The port should not < 1111"); + if (port < 1000) { + throw new Error("The port should not < 1000"); } if (port > 65536) { throw new Error("The port should not > 65536");