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

13 lines
168 B
Go
Raw Normal View History

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