Add vless outbound and xudp

This commit is contained in:
世界 2022-09-12 21:59:27 +08:00
parent dfb8b5f2fa
commit 38088f28b0
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
12 changed files with 783 additions and 49 deletions

11
option/vless.go Normal file
View file

@ -0,0 +1,11 @@
package option
type VLESSOutboundOptions struct {
DialerOptions
ServerOptions
UUID string `json:"uuid"`
Network NetworkList `json:"network,omitempty"`
TLS *OutboundTLSOptions `json:"tls,omitempty"`
Transport *V2RayTransportOptions `json:"transport,omitempty"`
PacketEncoding string `json:"packet_encoding,omitempty"`
}