mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-02 18:14:01 +00:00
35 lines
476 B
Go
35 lines
476 B
Go
package rules
|
|
|
|
import (
|
|
C "github.com/Dreamacro/clash/constant"
|
|
)
|
|
|
|
type Match struct {
|
|
adapter string
|
|
}
|
|
|
|
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 NewMatch(adapter string) *Match {
|
|
return &Match{
|
|
adapter: adapter,
|
|
}
|
|
}
|