v2ray-core/app/dns/config.go

15 lines
267 B
Go
Raw Normal View History

2015-12-06 11:00:10 +01:00
package dns
2016-01-15 15:23:12 +01:00
import (
"github.com/v2ray/v2ray-core/common/serial"
)
type CacheConfig struct {
TrustedTags map[serial.StringLiteral]bool
}
func (this *CacheConfig) IsTrustedSource(tag serial.StringLiteral) bool {
_, found := this.TrustedTags[tag]
return found
2015-12-06 11:00:10 +01:00
}