sing-box/option/vmess.go

31 lines
1.0 KiB
Go
Raw Permalink Normal View History

2022-07-25 03:29:46 +00:00
package option
type VMessInboundOptions struct {
ListenOptions
Users []VMessUser `json:"users,omitempty"`
InboundTLSOptionsContainer
Multiplex *InboundMultiplexOptions `json:"multiplex,omitempty"`
Transport *V2RayTransportOptions `json:"transport,omitempty"`
2022-07-25 03:29:46 +00:00
}
type VMessUser struct {
2022-08-01 04:23:34 +00:00
Name string `json:"name"`
UUID string `json:"uuid"`
AlterId int `json:"alterId,omitempty"`
2022-07-25 03:29:46 +00:00
}
type VMessOutboundOptions struct {
2022-09-03 04:55:10 +00:00
DialerOptions
2022-07-25 03:29:46 +00:00
ServerOptions
UUID string `json:"uuid"`
Security string `json:"security"`
AlterId int `json:"alter_id,omitempty"`
GlobalPadding bool `json:"global_padding,omitempty"`
AuthenticatedLength bool `json:"authenticated_length,omitempty"`
Network NetworkList `json:"network,omitempty"`
OutboundTLSOptionsContainer
PacketEncoding string `json:"packet_encoding,omitempty"`
Multiplex *OutboundMultiplexOptions `json:"multiplex,omitempty"`
Transport *V2RayTransportOptions `json:"transport,omitempty"`
2022-07-25 03:29:46 +00:00
}