Skip to content
This repository was archived by the owner on Jun 25, 2024. It is now read-only.

Commit b9f6da3

Browse files
JoeyLearnsToCodeyuchanns
authored andcommitted
update comments
1 parent a534ab8 commit b9f6da3

File tree

2 files changed

+1
-3
lines changed

2 files changed

+1
-3
lines changed

src/client/repo.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -153,14 +153,13 @@ export const getIPAll = async (
153153
}
154154

155155
function splitIpPort(address: string): [string, string] {
156-
// 首先检查是否IPv6
156+
// check if the address is IPv6
157157
const bracketRegex = /^\[(.*?)]:(\d+)$/;
158158
const v6match = address.match(bracketRegex);
159159
if (v6match) {
160160
return [v6match[1], v6match[2]];
161161
}
162162

163-
// 否则,将地址视为IPv4
164163
const [ip, port] = address.split(":");
165164
return [ip, port];
166165
}

src/server/sub.ts

-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,6 @@ export const sub = async (
1313
best: boolean, subType: SubType,
1414
proxyFormat: ProxyFormat, isAndroid: boolean,
1515
) => {
16-
// TODO: support IPv6
1716
let ips = await getIPAll(env, randomName)
1817
if (ips.length == 0) {
1918
ips = generateDefaultIPv4()

0 commit comments

Comments
 (0)