1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-30 15:56:28 -04:00
v2fly/features/dns/client.go

38 lines
861 B
Go
Raw Normal View History

2018-10-11 16:34:31 -04:00
package dns
import (
2018-10-11 17:09:15 -04:00
"v2ray.com/core/common/net"
2018-10-11 16:34:31 -04:00
"v2ray.com/core/features"
)
// Client is a V2Ray feature for querying DNS information.
2018-12-03 16:44:42 -05:00
//
// v2ray:api:stable
2018-10-11 16:34:31 -04:00
type Client interface {
features.Feature
2018-10-12 17:57:56 -04: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 17:57:56 -04:00
}
2018-10-21 04:27:13 -04:00
// IPv4Lookup is an optional feature for querying IPv4 addresses only.
2018-12-03 16:44:42 -05:00
//
// v2ray:api:beta
type IPv4Lookup interface {
LookupIPv4(domain string) ([]net.IP, error)
2018-10-21 04:27:13 -04:00
}
// IPv6Lookup is an optional feature for querying IPv6 addresses only.
2018-12-03 16:44:42 -05:00
//
// v2ray:api:beta
type IPv6Lookup interface {
LookupIPv6(domain string) ([]net.IP, error)
}
2018-10-21 04:27:13 -04:00
// ClientType returns the type of Client interface. Can be used for implementing common.HasType.
2018-12-03 16:44:42 -05:00
//
// v2ray:api:beta
func ClientType() interface{} {
return (*Client)(nil)
2018-10-21 04:27:13 -04:00
}