2018-10-11 20:34:31 +00:00
|
|
|
package dns
|
|
|
|
|
|
|
|
import (
|
2018-10-11 21:09:15 +00:00
|
|
|
"v2ray.com/core/common/net"
|
2018-10-11 20:34:31 +00:00
|
|
|
"v2ray.com/core/features"
|
|
|
|
)
|
|
|
|
|
|
|
|
// Client is a V2Ray feature for querying DNS information.
|
2018-12-03 21:44:42 +00:00
|
|
|
//
|
|
|
|
// v2ray:api:stable
|
2018-10-11 20:34:31 +00:00
|
|
|
type Client interface {
|
|
|
|
features.Feature
|
2018-10-12 21:57:56 +00:00
|
|
|
|
2018-11-19 19:42:02 +00:00
|
|
|
// LookupIP returns IP address for the given domain. IPs may contain IPv4 and/or IPv6 addresses.
|
|
|
|
LookupIP(domain string) ([]net.IP, error)
|
2018-10-12 21:57:56 +00:00
|
|
|
}
|
2018-10-21 08:27:13 +00:00
|
|
|
|
2018-11-19 19:42:02 +00:00
|
|
|
// IPv4Lookup is an optional feature for querying IPv4 addresses only.
|
2018-12-03 21:44:42 +00:00
|
|
|
//
|
|
|
|
// v2ray:api:beta
|
2018-11-19 19:42:02 +00:00
|
|
|
type IPv4Lookup interface {
|
|
|
|
LookupIPv4(domain string) ([]net.IP, error)
|
2018-10-21 08:27:13 +00:00
|
|
|
}
|
|
|
|
|
2018-11-19 19:42:02 +00:00
|
|
|
// IPv6Lookup is an optional feature for querying IPv6 addresses only.
|
2018-12-03 21:44:42 +00:00
|
|
|
//
|
|
|
|
// v2ray:api:beta
|
2018-11-19 19:42:02 +00:00
|
|
|
type IPv6Lookup interface {
|
|
|
|
LookupIPv6(domain string) ([]net.IP, error)
|
|
|
|
}
|
2018-10-21 08:27:13 +00:00
|
|
|
|
2018-11-19 19:42:02 +00:00
|
|
|
// ClientType returns the type of Client interface. Can be used for implementing common.HasType.
|
2018-12-03 21:44:42 +00:00
|
|
|
//
|
|
|
|
// v2ray:api:beta
|
2018-11-19 19:42:02 +00:00
|
|
|
func ClientType() interface{} {
|
|
|
|
return (*Client)(nil)
|
2018-10-21 08:27:13 +00:00
|
|
|
}
|