sing-box/option/shadowtls.go
2022-08-29 20:49:37 +08:00

14 lines
320 B
Go

package option
type ShadowTLSInboundOptions struct {
ListenOptions
Network NetworkList `json:"network,omitempty"`
HandshakeDetour string `json:"handshake_detour,omitempty"`
}
type ShadowTLSOutboundOptions struct {
OutboundDialerOptions
ServerOptions
TLS *OutboundTLSOptions `json:"tls,omitempty"`
}