mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
12 lines
406 B
Go
12 lines
406 B
Go
|
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"`
|
||
|
}
|