Revert "modify the port detection range to prevent the use of system ports (#3587)"

This reverts commit d3dbc11b1b4f9c436c0a5dc50c412d3e3f285d32.
This commit is contained in:
Tunglies 2025-11-04 07:11:44 +08:00
parent fe757ed984
commit 72d94c62f4
No known key found for this signature in database
GPG Key ID: B9B01B389469B3E8

View File

@ -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");