Added WARP endpoint

This commit is contained in:
Sergei Maklagin
2025-06-01 22:06:34 +03:00
parent 2cfc8092ad
commit 5c911c97d8
11 changed files with 380 additions and 0 deletions

View File

@@ -15,6 +15,7 @@ const (
TypeTrojan = "trojan"
TypeNaive = "naive"
TypeWireGuard = "wireguard"
TypeWARP = "warp"
TypeHysteria = "hysteria"
TypeTor = "tor"
TypeSSH = "ssh"
@@ -60,6 +61,8 @@ func ProxyDisplayName(proxyType string) string {
return "Naive"
case TypeWireGuard:
return "WireGuard"
case TypeWARP:
return "WARP"
case TypeHysteria:
return "Hysteria"
case TypeTor: