mirror of
https://github.com/SagerNet/sing-box.git
synced 2024-11-09 18:43:14 +00:00
13 lines
327 B
Go
13 lines
327 B
Go
package option
|
|
|
|
type TunPlatformOptions struct {
|
|
HTTPProxy *HTTPProxyOptions `json:"http_proxy,omitempty"`
|
|
}
|
|
|
|
type HTTPProxyOptions struct {
|
|
Enabled bool `json:"enabled,omitempty"`
|
|
ServerOptions
|
|
BypassDomain Listable[string] `json:"bypass_domain,omitempty"`
|
|
MatchDomain Listable[string] `json:"match_domain,omitempty"`
|
|
}
|