sing-box/option/tun_platform.go

13 lines
327 B
Go
Raw Normal View History

2023-02-28 11:02:27 +00:00
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"`
2023-02-28 11:02:27 +00:00
}