mirror of
https://github.com/SagerNet/sing-box.git
synced 2025-04-03 20:07:36 +03:00
Minor fixes
This commit is contained in:
parent
8fec78a5cd
commit
4216afe62f
3 changed files with 8 additions and 8 deletions
|
@ -730,11 +730,11 @@ func isGeositeDNSRule(rule option.DefaultDNSRule) bool {
|
|||
}
|
||||
|
||||
func isProcessRule(rule option.DefaultRule) bool {
|
||||
return len(rule.ProcessName) > 0
|
||||
return len(rule.ProcessName) > 0 || len(rule.PackageName) > 0 || len(rule.User) > 0 || len(rule.UserID) > 0
|
||||
}
|
||||
|
||||
func isProcessDNSRule(rule option.DefaultDNSRule) bool {
|
||||
return len(rule.ProcessName) > 0
|
||||
return len(rule.ProcessName) > 0 || len(rule.PackageName) > 0 || len(rule.User) > 0 || len(rule.UserID) > 0
|
||||
}
|
||||
|
||||
func notPrivateNode(code string) bool {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue