2020-11-25 13:01:53 +02:00
|
|
|
package conf
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/golang/protobuf/proto"
|
2020-12-04 03:36:16 +02:00
|
|
|
"github.com/xtls/xray-core/common/net"
|
|
|
|
"github.com/xtls/xray-core/proxy/dns"
|
2020-11-25 13:01:53 +02:00
|
|
|
)
|
|
|
|
|
|
|
|
type DNSOutboundConfig struct {
|
|
|
|
Network Network `json:"network"`
|
|
|
|
Address *Address `json:"address"`
|
|
|
|
Port uint16 `json:"port"`
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *DNSOutboundConfig) Build() (proto.Message, error) {
|
|
|
|
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
|
|
|
|
}
|