sing-box/option/route.go

27 lines
1.1 KiB
Go
Raw Normal View History

2022-07-02 14:07:50 +08:00
package option
2022-07-02 22:55:10 +08:00
type RouteOptions struct {
GeoIP *GeoIPOptions `json:"geoip,omitempty"`
Geosite *GeositeOptions `json:"geosite,omitempty"`
Rules []Rule `json:"rules,omitempty"`
2023-12-01 13:24:12 +08:00
RuleSet []RuleSet `json:"rule_set,omitempty"`
Final string `json:"final,omitempty"`
FindProcess bool `json:"find_process,omitempty"`
AutoDetectInterface bool `json:"auto_detect_interface,omitempty"`
OverrideAndroidVPN bool `json:"override_android_vpn,omitempty"`
2022-07-15 11:51:51 +08:00
DefaultInterface string `json:"default_interface,omitempty"`
2022-07-24 17:46:25 +08:00
DefaultMark int `json:"default_mark,omitempty"`
2022-07-02 22:55:10 +08:00
}
type GeoIPOptions struct {
Path string `json:"path,omitempty"`
DownloadURL string `json:"download_url,omitempty"`
DownloadDetour string `json:"download_detour,omitempty"`
}
2022-07-05 09:05:35 +08:00
type GeositeOptions struct {
Path string `json:"path,omitempty"`
DownloadURL string `json:"download_url,omitempty"`
DownloadDetour string `json:"download_detour,omitempty"`
}