mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-10 11:03:13 +00:00
33 lines
927 B
Go
33 lines
927 B
Go
|
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 {
|
||
|
OutboundDialerOptions
|
||
|
ServerOptions
|
||
|
Version string `json:"version,omitempty"`
|
||
|
Username string `json:"username,omitempty"`
|
||
|
Password string `json:"password,omitempty"`
|
||
|
Network NetworkList `json:"network,omitempty"`
|
||
|
}
|
||
|
|
||
|
type HTTPOutboundOptions struct {
|
||
|
OutboundDialerOptions
|
||
|
ServerOptions
|
||
|
Username string `json:"username,omitempty"`
|
||
|
Password string `json:"password,omitempty"`
|
||
|
TLSOptions *OutboundTLSOptions `json:"tls,omitempty"`
|
||
|
}
|