mirror of https://github.com/v2ray/v2ray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
462 B
28 lines
462 B
package rules
|
|
|
|
import (
|
|
v2net "github.com/v2ray/v2ray-core/common/net"
|
|
)
|
|
|
|
type Rule struct {
|
|
Tag string
|
|
Condition Condition
|
|
}
|
|
|
|
func (this *Rule) Apply(dest v2net.Destination) bool {
|
|
return this.Condition.Apply(dest)
|
|
}
|
|
|
|
type DomainStrategy int
|
|
|
|
var (
|
|
DomainAsIs = DomainStrategy(0)
|
|
AlwaysUseIP = DomainStrategy(1)
|
|
UseIPIfNonMatch = DomainStrategy(2)
|
|
)
|
|
|
|
type RouterRuleConfig struct {
|
|
Rules []*Rule
|
|
DomainStrategy DomainStrategy
|
|
}
|