1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-06 03:54:22 -04:00
v2fly/app/dns/nameserver.go

57 lines
1.1 KiB
Go
Raw Normal View History

2019-02-01 14:08:21 -05:00
// +build !confonly
2017-12-19 17:55:09 -05:00
package dns
2016-05-16 02:09:28 -04:00
import (
"context"
2016-05-16 02:09:28 -04:00
"v2ray.com/core/common/net"
"v2ray.com/core/features/dns/localdns"
2016-05-16 02:09:28 -04:00
)
2018-12-28 14:28:31 -05:00
// IPOption is an object for IP query options.
type IPOption struct {
IPv4Enable bool
IPv6Enable bool
}
2019-02-22 18:01:23 -05:00
// Client is the interface for DNS client.
2018-12-28 14:28:31 -05:00
type Client interface {
2019-02-22 18:01:23 -05:00
// Name of the Client.
2018-11-22 10:29:09 -05:00
Name() string
2019-02-22 18:01:23 -05:00
// QueryIP sends IP queries to its configured server.
QueryIP(ctx context.Context, domain string, option IPOption) ([]net.IP, error)
2016-05-16 02:09:28 -04:00
}
2016-05-16 12:05:01 -04:00
2018-06-27 05:23:39 -04:00
type localNameServer struct {
client *localdns.Client
2016-05-16 12:05:01 -04:00
}
func (s *localNameServer) QueryIP(ctx context.Context, domain string, option IPOption) ([]net.IP, error) {
if option.IPv4Enable && option.IPv6Enable {
return s.client.LookupIP(domain)
}
if option.IPv4Enable {
return s.client.LookupIPv4(domain)
2018-06-26 09:16:45 -04:00
}
if option.IPv6Enable {
return s.client.LookupIPv6(domain)
2018-06-26 09:16:45 -04:00
}
return nil, newError("neither IPv4 nor IPv6 is enabled")
2018-06-26 09:16:45 -04:00
}
2018-11-22 10:29:09 -05:00
func (s *localNameServer) Name() string {
return "localhost"
}
2018-06-27 05:23:39 -04:00
func NewLocalNameServer() *localNameServer {
newError("DNS: created localhost client").AtInfo().WriteToLog()
2018-06-27 05:23:39 -04:00
return &localNameServer{
client: localdns.New(),
2018-06-26 09:16:45 -04:00
}
2016-05-16 12:05:01 -04:00
}