sing-box/option/simple.go

34 lines
1 KiB
Go
Raw Normal View History

2022-07-25 03:29:46 +00:00
package option
import "github.com/sagernet/sing/common/auth"
type SocksInboundOptions struct {
ListenOptions
Users []auth.User `json:"users,omitempty"`
}
type HTTPMixedInboundOptions struct {
ListenOptions
Users []auth.User `json:"users,omitempty"`
SetSystemProxy bool `json:"set_system_proxy,omitempty"`
TLS *InboundTLSOptions `json:"tls,omitempty"`
}
type SocksOutboundOptions struct {
2022-09-03 04:55:10 +00:00
DialerOptions
2022-07-25 03:29:46 +00:00
ServerOptions
2023-03-17 04:24:29 +00:00
Version string `json:"version,omitempty"`
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty"`
Network NetworkList `json:"network,omitempty"`
UDPOverTCPOptions *UDPOverTCPOptions `json:"udp_over_tcp,omitempty"`
2022-07-25 03:29:46 +00:00
}
type HTTPOutboundOptions struct {
2022-09-03 04:55:10 +00:00
DialerOptions
2022-07-25 03:29:46 +00:00
ServerOptions
2022-08-23 13:07:35 +00:00
Username string `json:"username,omitempty"`
Password string `json:"password,omitempty"`
TLS *OutboundTLSOptions `json:"tls,omitempty"`
2022-07-25 03:29:46 +00:00
}