github.com/sagernet/sing-box@v1.9.0-rc.20/option/tun_platform.go (about)

     1  package option
     2  
     3  type TunPlatformOptions struct {
     4  	HTTPProxy *HTTPProxyOptions `json:"http_proxy,omitempty"`
     5  }
     6  
     7  type HTTPProxyOptions struct {
     8  	Enabled bool `json:"enabled,omitempty"`
     9  	ServerOptions
    10  	BypassDomain Listable[string] `json:"bypass_domain,omitempty"`
    11  	MatchDomain  Listable[string] `json:"match_domain,omitempty"`
    12  }