diff --git a/config/config.go b/config/config.go index 7f725406..c9b348c1 100644 --- a/config/config.go +++ b/config/config.go @@ -358,7 +358,7 @@ func parseRules(cfg *rawConfig) ([]C.Rule, error) { case "MATCH": fallthrough case "FINAL": - rules = append(rules, R.NewFinal(target)) + rules = append(rules, R.NewMatch(target)) } } diff --git a/constant/rule.go b/constant/rule.go index ba287501..e142efc0 100644 --- a/constant/rule.go +++ b/constant/rule.go @@ -8,7 +8,7 @@ const ( GEOIP IPCIDR SourceIPCIDR - FINAL + MATCH ) type RuleType int @@ -27,8 +27,8 @@ func (rt RuleType) String() string { return "IPCIDR" case SourceIPCIDR: return "SourceIPCIDR" - case FINAL: - return "FINAL" + case MATCH: + return "MATCH" default: return "Unknow" } diff --git a/rules/final.go b/rules/final.go index 1cc3b888..88df0680 100644 --- a/rules/final.go +++ b/rules/final.go @@ -4,28 +4,28 @@ import ( C "github.com/Dreamacro/clash/constant" ) -type Final struct { +type Match struct { adapter string } -func (f *Final) RuleType() C.RuleType { - return C.FINAL +func (f *Match) RuleType() C.RuleType { + return C.MATCH } -func (f *Final) IsMatch(metadata *C.Metadata) bool { +func (f *Match) IsMatch(metadata *C.Metadata) bool { return true } -func (f *Final) Adapter() string { +func (f *Match) Adapter() string { return f.adapter } -func (f *Final) Payload() string { +func (f *Match) Payload() string { return "" } -func NewFinal(adapter string) *Final { - return &Final{ +func NewMatch(adapter string) *Match { + return &Match{ adapter: adapter, } }