2024-03-10 15:13:42 -04:00
|
|
|
package model
|
|
|
|
|
2024-03-20 12:02:38 -04:00
|
|
|
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
|
2024-03-10 15:13:42 -04:00
|
|
|
}
|