mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-14 21:31:16 +08:00
37 lines
501 B
Go
37 lines
501 B
Go
package constant
|
|
|
|
// Rule Type
|
|
const (
|
|
DomainSuffix RuleType = iota
|
|
DomainKeyword
|
|
GEOIP
|
|
IPCIDR
|
|
FINAL
|
|
)
|
|
|
|
type RuleType int
|
|
|
|
func (rt RuleType) String() string {
|
|
switch rt {
|
|
case DomainSuffix:
|
|
return "DomainSuffix"
|
|
case DomainKeyword:
|
|
return "DomainKeyword"
|
|
case GEOIP:
|
|
return "GEOIP"
|
|
case IPCIDR:
|
|
return "IPCIDR"
|
|
case FINAL:
|
|
return "FINAL"
|
|
default:
|
|
return "Unknow"
|
|
}
|
|
}
|
|
|
|
type Rule interface {
|
|
RuleType() RuleType
|
|
IsMatch(addr *Addr) bool
|
|
Adapter() string
|
|
Payload() string
|
|
}
|