Optimize code for better performance

pull/5066/head
sincere liu 2024-05-05 22:07:51 +08:00
parent 60068d8d16
commit 5fe468fa1b
1 changed files with 3 additions and 12 deletions

View File

@ -266,19 +266,10 @@ namespace v2rayN.Handler
{
if (Utils.IsIpv6(address))
{
if (address.StartsWith('[') && address.EndsWith(']'))
{
return address;
}
else
{
return $"[{address}]";
}
}
else
{
return address;
// 检查地址是否已经被方括号包围,如果没有,则添加方括号
return address.StartsWith('[') && address.EndsWith(']') ? address : $"[{address}]";
}
return address; // 如果不是IPv6地址直接返回原地址
}
private static int GetStdTransport(ProfileItem item, string? securityDef, ref Dictionary<string, string> dicQuery)