mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-04 04:17:36 +03:00
Add disable_cache option to dns rule
This commit is contained in:
parent
8666631732
commit
af19ba6119
6 changed files with 127 additions and 82 deletions
|
@ -145,6 +145,7 @@ func (r DefaultRule) Equals(other DefaultRule) bool {
|
|||
type LogicalRule struct {
|
||||
Mode string `json:"mode"`
|
||||
Rules []DefaultRule `json:"rules,omitempty"`
|
||||
Invert bool `json:"invert,omitempty"`
|
||||
Outbound string `json:"outbound,omitempty"`
|
||||
}
|
||||
|
||||
|
@ -155,5 +156,6 @@ func (r LogicalRule) IsValid() bool {
|
|||
func (r LogicalRule) Equals(other LogicalRule) bool {
|
||||
return r.Mode == other.Mode &&
|
||||
common.SliceEquals(r.Rules, other.Rules) &&
|
||||
r.Invert == other.Invert &&
|
||||
r.Outbound == other.Outbound
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue