15 lines
272 B
Go
Raw Normal View History

2016-01-31 17:01:28 +01:00
package internal
2015-12-06 11:00:10 +01:00
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
}