v2ray-core/app/dns/config.go

13 lines
155 B
Go
Raw Normal View History

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