1
0
mirror of https://github.com/nitezs/sub2sing-box.git synced 2024-12-24 13:14:42 -05:00
sub2sing-box/model/tuic.go
nite07 688f8287af 重构部分代码
fix: vless ws 配置缺少 path 字段
2024-03-21 00:02:38 +08:00

16 lines
571 B
Go

package model
type TUICOutboundOptions struct {
DialerOptions
ServerOptions
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 string `json:"heartbeat,omitempty"`
Network string `json:"network,omitempty"`
OutboundTLSOptionsContainer
}