Feature: add basic support for the VLESS protocol (#2891)

This commit is contained in:
crwnet
2023-08-24 13:24:45 +08:00
committed by GitHub
parent 651a36964e
commit 8a4c46ae77
16 changed files with 893 additions and 25 deletions

View File

@ -19,6 +19,7 @@ const (
Snell
Socks5
Http
Vless
Vmess
Trojan
@ -140,6 +141,8 @@ func (at AdapterType) String() string {
return "Socks5"
case Http:
return "Http"
case Vless:
return "Vless"
case Vmess:
return "Vmess"
case Trojan: