mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
f01ac69654
# Conflicts: # .github/workflows/codeql-analysis.yml # .github/workflows/docker.yml # .github/workflows/linter.yml # .github/workflows/stale.yml # Makefile # component/dialer/dialer.go # config/config.go # constant/metadata.go # constant/rule.go # rule/common/domain.go # rule/common/domain_keyword.go # rule/common/domain_suffix.go # rule/common/final.go # rule/common/ipcidr.go # rule/geoip.go # rule/parser.go # rule/port.go # rule/process.go
49 lines
733 B
Go
49 lines
733 B
Go
package common
|
|
|
|
import (
|
|
C "github.com/Dreamacro/clash/constant"
|
|
)
|
|
|
|
type Match struct {
|
|
adapter string
|
|
ruleExtra *C.RuleExtra
|
|
}
|
|
|
|
func (f *Match) RuleType() C.RuleType {
|
|
return C.MATCH
|
|
}
|
|
|
|
func (f *Match) Match(metadata *C.Metadata) bool {
|
|
return true
|
|
}
|
|
|
|
func (f *Match) Adapter() string {
|
|
return f.adapter
|
|
}
|
|
|
|
func (f *Match) Payload() string {
|
|
return ""
|
|
}
|
|
|
|
func (f *Match) ShouldResolveIP() bool {
|
|
return false
|
|
}
|
|
|
|
func (f *Match) ShouldFindProcess() bool {
|
|
return false
|
|
}
|
|
|
|
func (f *Match) RuleExtra() *C.RuleExtra {
|
|
return f.ruleExtra
|
|
}
|
|
|
|
func NewMatch(adapter string, ruleExtra *C.RuleExtra) *Match {
|
|
if ruleExtra.SourceIPs == nil {
|
|
ruleExtra = nil
|
|
}
|
|
return &Match{
|
|
adapter: adapter,
|
|
ruleExtra: ruleExtra,
|
|
}
|
|
}
|