mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 02:53:12 +00:00
22 lines
569 B
Go
22 lines
569 B
Go
package option
|
|
|
|
type ShadowTLSInboundOptions struct {
|
|
ListenOptions
|
|
Version int `json:"version,omitempty"`
|
|
Password string `json:"password,omitempty"`
|
|
Handshake ShadowTLSHandshakeOptions `json:"handshake"`
|
|
}
|
|
|
|
type ShadowTLSHandshakeOptions struct {
|
|
ServerOptions
|
|
DialerOptions
|
|
}
|
|
|
|
type ShadowTLSOutboundOptions struct {
|
|
DialerOptions
|
|
ServerOptions
|
|
Version int `json:"version,omitempty"`
|
|
Password string `json:"password,omitempty"`
|
|
TLS *OutboundTLSOptions `json:"tls,omitempty"`
|
|
}
|