1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 23:36:25 -04:00
v2fly/app/dns/nameserver.go

49 lines
908 B
Go
Raw Normal View History

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
)
type IPOption struct {
IPv4Enable bool
IPv6Enable bool
}
type NameServerInterface interface {
2018-11-22 10:29:09 -05:00
Name() string
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 {
return &localNameServer{
client: localdns.New(),
2018-06-26 09:16:45 -04:00
}
2016-05-16 12:05:01 -04:00
}