2018-06-10 14:50:03 +00:00
|
|
|
package rules
|
|
|
|
|
|
|
|
import (
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
|
|
)
|
|
|
|
|
2019-02-18 13:53:57 +00:00
|
|
|
type Match struct {
|
2018-06-10 14:50:03 +00:00
|
|
|
adapter string
|
|
|
|
}
|
|
|
|
|
2019-02-18 13:53:57 +00:00
|
|
|
func (f *Match) RuleType() C.RuleType {
|
|
|
|
return C.MATCH
|
2018-06-10 14:50:03 +00:00
|
|
|
}
|
|
|
|
|
2019-10-27 16:02:23 +00:00
|
|
|
func (f *Match) Match(metadata *C.Metadata) bool {
|
2018-06-10 14:50:03 +00:00
|
|
|
return true
|
|
|
|
}
|
|
|
|
|
2019-02-18 13:53:57 +00:00
|
|
|
func (f *Match) Adapter() string {
|
2018-06-10 14:50:03 +00:00
|
|
|
return f.adapter
|
|
|
|
}
|
|
|
|
|
2019-02-18 13:53:57 +00:00
|
|
|
func (f *Match) Payload() string {
|
2018-06-20 14:41:02 +00:00
|
|
|
return ""
|
|
|
|
}
|
|
|
|
|
2020-07-27 03:57:55 +00:00
|
|
|
func (f *Match) ShouldResolveIP() bool {
|
|
|
|
return false
|
2019-10-27 16:02:23 +00:00
|
|
|
}
|
|
|
|
|
2021-07-01 14:49:29 +00:00
|
|
|
func (f *Match) NetWork() C.NetWork {
|
|
|
|
return C.ALLNet
|
|
|
|
}
|
|
|
|
|
2019-02-18 13:53:57 +00:00
|
|
|
func NewMatch(adapter string) *Match {
|
|
|
|
return &Match{
|
2018-06-10 14:50:03 +00:00
|
|
|
adapter: adapter,
|
|
|
|
}
|
|
|
|
}
|