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.
26 lines
520 B
26 lines
520 B
package internal
|
|
|
|
import (
|
|
"net"
|
|
|
|
"github.com/v2ray/v2ray-core/app"
|
|
)
|
|
|
|
type DnsCacheWithContext interface {
|
|
Get(context app.Context, domain string) net.IP
|
|
Add(contaxt app.Context, domain string, ip net.IP)
|
|
}
|
|
|
|
type contextedDnsCache struct {
|
|
context app.Context
|
|
dnsCache DnsCacheWithContext
|
|
}
|
|
|
|
func (this *contextedDnsCache) Get(domain string) net.IP {
|
|
return this.dnsCache.Get(this.context, domain)
|
|
}
|
|
|
|
func (this *contextedDnsCache) Add(domain string, ip net.IP) {
|
|
this.dnsCache.Add(this.context, domain, ip)
|
|
}
|