clash/constant/rule_extra.go

49 lines
835 B
Go
Raw Normal View History

package constant
import (
"net"
2022-02-23 06:01:53 +00:00
"strings"
"github.com/Dreamacro/clash/component/geodata/router"
)
type RuleExtra struct {
2022-02-23 06:01:53 +00:00
Network NetWork
SourceIPs []*net.IPNet
ProcessNames []string
}
func (re *RuleExtra) NotMatchNetwork(network NetWork) bool {
return re.Network != ALLNet && re.Network != network
}
func (re *RuleExtra) NotMatchSourceIP(srcIP net.IP) bool {
if re.SourceIPs == nil {
return false
}
for _, ips := range re.SourceIPs {
if ips.Contains(srcIP) {
return false
}
}
return true
}
2022-02-23 06:01:53 +00:00
func (re *RuleExtra) NotMatchProcessName(processName string) bool {
if re.ProcessNames == nil {
return false
}
for _, pn := range re.ProcessNames {
if strings.EqualFold(pn, processName) {
return false
}
}
return true
}
type RuleGeoSite interface {
GetDomainMatcher() *router.DomainMatcher
}