Accept "any" outbound in dns rule

This commit is contained in:
世界 2023-03-29 10:30:31 +08:00
parent 88fafd4e30
commit 879c38351b
No known key found for this signature in database
GPG Key ID: CD109927C34A63C4

View File

@ -12,17 +12,25 @@ var _ RuleItem = (*OutboundItem)(nil)
type OutboundItem struct {
outbounds []string
outboundMap map[string]bool
matchAny bool
}
func NewOutboundRule(outbounds []string) *OutboundItem {
rule := &OutboundItem{outbounds, make(map[string]bool)}
rule := &OutboundItem{outbounds: outbounds, outboundMap: make(map[string]bool)}
for _, outbound := range outbounds {
rule.outboundMap[outbound] = true
if outbound == "any" {
rule.matchAny = true
} else {
rule.outboundMap[outbound] = true
}
}
return rule
}
func (r *OutboundItem) Match(metadata *adapter.InboundContext) bool {
if r.matchAny && metadata.Outbound != "" {
return true
}
return r.outboundMap[metadata.Outbound]
}