2022-07-25 11:29:46 +08:00
|
|
|
package option
|
|
|
|
|
2024-11-07 21:44:04 +08:00
|
|
|
import (
|
|
|
|
"github.com/sagernet/sing/common/auth"
|
|
|
|
"github.com/sagernet/sing/common/json/badoption"
|
|
|
|
)
|
2022-07-25 11:29:46 +08:00
|
|
|
|
|
|
|
type SocksInboundOptions struct {
|
|
|
|
ListenOptions
|
|
|
|
Users []auth.User `json:"users,omitempty"`
|
|
|
|
}
|
|
|
|
|
|
|
|
type HTTPMixedInboundOptions struct {
|
|
|
|
ListenOptions
|
2023-12-11 18:36:06 +08:00
|
|
|
Users []auth.User `json:"users,omitempty"`
|
|
|
|
SetSystemProxy bool `json:"set_system_proxy,omitempty"`
|
|
|
|
InboundTLSOptionsContainer
|
2022-07-25 11:29:46 +08:00
|
|
|
}
|
|
|
|
|
2024-11-02 00:39:02 +08:00
|
|
|
type SOCKSOutboundOptions struct {
|
2022-09-03 12:55:10 +08:00
|
|
|
DialerOptions
|
2022-07-25 11:29:46 +08:00
|
|
|
ServerOptions
|
2023-11-08 12:09:22 +08:00
|
|
|
Version string `json:"version,omitempty"`
|
|
|
|
Username string `json:"username,omitempty"`
|
|
|
|
Password string `json:"password,omitempty"`
|
|
|
|
Network NetworkList `json:"network,omitempty"`
|
|
|
|
UDPOverTCP *UDPOverTCPOptions `json:"udp_over_tcp,omitempty"`
|
2022-07-25 11:29:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type HTTPOutboundOptions struct {
|
2022-09-03 12:55:10 +08:00
|
|
|
DialerOptions
|
2022-07-25 11:29:46 +08:00
|
|
|
ServerOptions
|
2023-12-11 18:36:06 +08:00
|
|
|
Username string `json:"username,omitempty"`
|
|
|
|
Password string `json:"password,omitempty"`
|
|
|
|
OutboundTLSOptionsContainer
|
2024-11-07 21:44:04 +08:00
|
|
|
Path string `json:"path,omitempty"`
|
|
|
|
Headers badoption.HTTPHeader `json:"headers,omitempty"`
|
2022-07-25 11:29:46 +08:00
|
|
|
}
|