mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-09 11:51:02 -05:00
33 lines
675 B
Go
33 lines
675 B
Go
package conf
|
|
|
|
import (
|
|
"v2ray.com/core/app/dns"
|
|
v2net "v2ray.com/core/common/net"
|
|
)
|
|
|
|
type DnsConfig struct {
|
|
Servers []*Address `json:"servers"`
|
|
Hosts map[string]*Address `json:"hosts"`
|
|
}
|
|
|
|
func (this *DnsConfig) Build() *dns.Config {
|
|
config := new(dns.Config)
|
|
config.NameServers = make([]*v2net.Endpoint, len(this.Servers))
|
|
for idx, server := range this.Servers {
|
|
config.NameServers[idx] = &v2net.Endpoint{
|
|
Network: v2net.Network_UDP,
|
|
Address: server.Build(),
|
|
Port: 53,
|
|
}
|
|
}
|
|
|
|
if this.Hosts != nil {
|
|
config.Hosts = make(map[string]*v2net.IPOrDomain)
|
|
for k, v := range this.Hosts {
|
|
config.Hosts[k] = v.Build()
|
|
}
|
|
}
|
|
|
|
return config
|
|
}
|