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

10
adapter/outbound/vless.go Normal file
View File

@ -0,0 +1,10 @@
package outbound
type (
Vless = Vmess
VlessOption = VmessOption
)
func NewVless(option VlessOption) (*Vless, error) {
return newVmess(option, true)
}