2022-07-25 03:29:46 +00:00
|
|
|
package option
|
|
|
|
|
|
|
|
type VMessInboundOptions struct {
|
|
|
|
ListenOptions
|
2023-12-11 10:36:06 +00:00
|
|
|
Users []VMessUser `json:"users,omitempty"`
|
|
|
|
InboundTLSOptionsContainer
|
2023-11-08 04:09:22 +00:00
|
|
|
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
|
2023-12-11 10:36:06 +00:00
|
|
|
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
|
|
|
}
|