mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 04:17:36 +03:00
Add route.default_mark option
This commit is contained in:
parent
7d340e7ef9
commit
fe8e984608
5 changed files with 18 additions and 2 deletions
|
@ -16,12 +16,18 @@ type RouteOptions struct {
|
|||
FindProcess bool `json:"find_process,omitempty"`
|
||||
AutoDetectInterface bool `json:"auto_detect_interface,omitempty"`
|
||||
DefaultInterface string `json:"default_interface,omitempty"`
|
||||
DefaultMark int `json:"default_mark,omitempty"`
|
||||
}
|
||||
|
||||
func (o RouteOptions) Equals(other RouteOptions) bool {
|
||||
return common.ComparablePtrEquals(o.GeoIP, other.GeoIP) &&
|
||||
common.ComparablePtrEquals(o.Geosite, other.Geosite) &&
|
||||
common.SliceEquals(o.Rules, other.Rules)
|
||||
common.SliceEquals(o.Rules, other.Rules) &&
|
||||
o.Final == other.Final &&
|
||||
o.FindProcess == other.FindProcess &&
|
||||
o.AutoDetectInterface == other.AutoDetectInterface &&
|
||||
o.DefaultInterface == other.DefaultInterface &&
|
||||
o.DefaultMark == other.DefaultMark
|
||||
}
|
||||
|
||||
type GeoIPOptions struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue