mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
619 B
29 lines
619 B
package conf |
|
|
|
import ( |
|
"github.com/golang/protobuf/proto" |
|
|
|
"github.com/xtls/xray-core/common/net" |
|
"github.com/xtls/xray-core/proxy/dns" |
|
) |
|
|
|
type DNSOutboundConfig struct { |
|
Network Network `json:"network"` |
|
Address *Address `json:"address"` |
|
Port uint16 `json:"port"` |
|
UserLevel uint32 `json:"userLevel"` |
|
} |
|
|
|
func (c *DNSOutboundConfig) Build() (proto.Message, error) { |
|
config := &dns.Config{ |
|
Server: &net.Endpoint{ |
|
Network: c.Network.Build(), |
|
Port: uint32(c.Port), |
|
}, |
|
UserLevel: c.UserLevel, |
|
} |
|
if c.Address != nil { |
|
config.Server.Address = c.Address.Build() |
|
} |
|
return config, nil |
|
}
|
|
|