Add tunnel

This commit is contained in:
Sergei Maklagin
2025-07-06 18:31:06 +03:00
parent 765111a552
commit 209b89a4a3
29 changed files with 1262 additions and 10 deletions

View File

@@ -25,6 +25,8 @@ const (
TypeVLESS = "vless"
TypeTUIC = "tuic"
TypeHysteria2 = "hysteria2"
TypeTunnelClient = "tunnel_client"
TypeTunnelServer = "tunnel_server"
)
const (
@@ -86,6 +88,10 @@ func ProxyDisplayName(proxyType string) string {
return "Selector"
case TypeURLTest:
return "URLTest"
case TypeTunnelClient:
return "Tunnel Client"
case TypeTunnelServer:
return "Tunnel Server"
default:
return "Unknown"
}