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:
parent
62403f68ca
commit
280dacabac
@ -81,11 +81,21 @@ namespace ProxySuper.Core.Models.Projects
|
|||||||
list.Add(VLESS_KCP_Port);
|
list.Add(VLESS_KCP_Port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Types.Contains(RayType.VLESS_QUIC))
|
||||||
|
{
|
||||||
|
list.Add(VLESS_QUIC_Port);
|
||||||
|
}
|
||||||
|
|
||||||
if (Types.Contains(RayType.VMESS_KCP))
|
if (Types.Contains(RayType.VMESS_KCP))
|
||||||
{
|
{
|
||||||
list.Add(VMESS_KCP_Port);
|
list.Add(VMESS_KCP_Port);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Types.Contains(RayType.VMESS_QUIC))
|
||||||
|
{
|
||||||
|
list.Add(VMESS_QUIC_Port);
|
||||||
|
}
|
||||||
|
|
||||||
if (Types.Contains(RayType.ShadowsocksAEAD))
|
if (Types.Contains(RayType.ShadowsocksAEAD))
|
||||||
{
|
{
|
||||||
list.Add(ShadowSocksPort);
|
list.Add(ShadowSocksPort);
|
||||||
|
Loading…
Reference in New Issue
Block a user