mirror of
https://github.com/nitezs/sub2sing-box.git
synced 2024-12-24 11:54:41 -05:00
18 lines
893 B
Go
18 lines
893 B
Go
package model
|
|
|
|
type TUIC struct {
|
|
Type string `json:"type"`
|
|
Tag string `json:"tag,omitempty"`
|
|
Server string `json:"server"`
|
|
ServerPort uint16 `json:"server_port"`
|
|
UUID string `json:"uuid,omitempty"`
|
|
Password string `json:"password,omitempty"`
|
|
CongestionControl string `json:"congestion_control,omitempty"`
|
|
UDPRelayMode string `json:"udp_relay_mode,omitempty"`
|
|
UDPOverStream bool `json:"udp_over_stream,omitempty"`
|
|
ZeroRTTHandshake bool `json:"zero_rtt_handshake,omitempty"`
|
|
Heartbeat Duration `json:"heartbeat,omitempty"`
|
|
Network string `json:"network,omitempty"`
|
|
TLS *OutboundTLSOptions `json:"tls,omitempty"`
|
|
}
|