1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-16 04:35:24 +00:00
v2fly/app/dns/config.go

13 lines
155 B
Go
Raw Normal View History

2016-05-16 07:25:34 +00:00
package dns
2015-12-06 10:00:10 +00:00
2016-01-15 14:23:12 +00:00
import (
2016-05-22 20:30:08 +00:00
"net"
2016-08-20 18:55:45 +00:00
v2net "v2ray.com/core/common/net"
2016-01-15 14:23:12 +00:00
)
2016-05-16 06:09:28 +00:00
type Config struct {
2016-05-22 20:30:08 +00:00
Hosts map[string]net.IP
2016-05-16 06:09:28 +00:00
NameServers []v2net.Destination
2015-12-06 10:00:10 +00:00
}