mirror of
https://github.com/XTLS/Xray-core.git
synced 2024-11-05 04:29:19 +02:00
27 lines
553 B
Go
27 lines
553 B
Go
|
package conf
|
||
|
|
||
|
import (
|
||
|
"github.com/golang/protobuf/proto"
|
||
|
"github.com/xtls/xray-core/v1/common/net"
|
||
|
"github.com/xtls/xray-core/v1/proxy/dns"
|
||
|
)
|
||
|
|
||
|
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
|
||
|
}
|