1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-05 13:35:23 +00:00
v2fly/infra/conf/dns_proxy.go

28 lines
558 B
Go
Raw Normal View History

2019-02-10 18:04:11 +00:00
package conf
import (
"github.com/golang/protobuf/proto"
2021-02-16 20:31:50 +00:00
"github.com/v2fly/v2ray-core/v4/common/net"
"github.com/v2fly/v2ray-core/v4/proxy/dns"
2019-02-10 18:04:11 +00:00
)
type DNSOutboundConfig struct {
2019-05-30 08:48:34 +00:00
Network Network `json:"network"`
Address *Address `json:"address"`
Port uint16 `json:"port"`
2019-02-12 21:34:43 +00:00
}
2019-02-10 18:04:11 +00:00
func (c *DNSOutboundConfig) Build() (proto.Message, error) {
2019-02-12 21:34:43 +00:00
config := &dns.Config{
Server: &net.Endpoint{
Network: c.Network.Build(),
Port: uint32(c.Port),
},
}
if c.Address != nil {
config.Server.Address = c.Address.Build()
}
return config, nil
2019-02-10 18:04:11 +00:00
}