mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-02 17:27:50 -04:00
31 lines
722 B
Go
31 lines
722 B
Go
package v4
|
|
|
|
import (
|
|
"github.com/golang/protobuf/proto"
|
|
|
|
"github.com/v2fly/v2ray-core/v5/common/net"
|
|
"github.com/v2fly/v2ray-core/v5/infra/conf/cfgcommon"
|
|
"github.com/v2fly/v2ray-core/v5/proxy/dns"
|
|
)
|
|
|
|
type DNSOutboundConfig struct {
|
|
Network cfgcommon.Network `json:"network"`
|
|
Address *cfgcommon.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
|
|
}
|