This repository has been archived on 2024-09-06. You can view files and clone it, but cannot push or open issues or pull requests.
2018-06-10 22:50:03 +08:00

19 lines
217 B
Go

package constant
// Rule Type
const (
DomainSuffix RuleType = iota
DomainKeyword
GEOIP
IPCIDR
FINAL
)
type RuleType int
type Rule interface {
RuleType() RuleType
IsMatch(addr *Addr) bool
Adapter() string
}