clash/rules/common/base.go

31 lines
388 B
Go
Raw Normal View History

package common
import (
"errors"
)
var (
errPayload = errors.New("payloadRule error")
2022-05-30 13:26:41 +00:00
noResolve = "no-resolve"
)
2022-03-12 17:21:23 +00:00
type Base struct {
}
func (b *Base) ShouldFindProcess() bool {
return false
}
2022-03-17 15:24:07 +00:00
func (b *Base) ShouldResolveIP() bool {
return false
}
func HasNoResolve(params []string) bool {
for _, p := range params {
if p == noResolve {
return true
}
}
return false
}