1
0
mirror of https://github.com/proxysu/ProxySU.git synced 2024-11-21 20:56:08 +03:00

Fixed quic port

Fixed the problem that the firewall could not open the quic port
This commit is contained in:
MisCusi2023 2023-04-14 19:33:44 -07:00 committed by GitHub
parent 62403f68ca
commit 280dacabac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -81,11 +81,21 @@ namespace ProxySuper.Core.Models.Projects
list.Add(VLESS_KCP_Port);
}
if (Types.Contains(RayType.VLESS_QUIC))
{
list.Add(VLESS_QUIC_Port);
}
if (Types.Contains(RayType.VMESS_KCP))
{
list.Add(VMESS_KCP_Port);
}
if (Types.Contains(RayType.VMESS_QUIC))
{
list.Add(VMESS_QUIC_Port);
}
if (Types.Contains(RayType.ShadowsocksAEAD))
{
list.Add(ShadowSocksPort);