1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 02:16:11 -04:00
v2fly/app/dns/dns.go

17 lines
209 B
Go
Raw Normal View History

2015-12-06 05:00:10 -05:00
package dns
import (
"net"
2015-12-10 17:55:39 -05:00
"github.com/v2ray/v2ray-core/app"
2015-12-06 05:00:10 -05:00
)
2016-01-31 11:01:28 -05:00
const (
APP_ID = app.ID(2)
)
2015-12-06 05:00:10 -05:00
2016-01-31 11:01:28 -05:00
// A DnsCache is an internal cache of DNS resolutions.
2016-05-16 02:09:28 -04:00
type Server interface {
Get(domain string) []net.IP
2015-12-06 05:00:10 -05:00
}