1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 18:00:43 +00:00
v2fly/features/dns/client.go

13 lines
225 B
Go
Raw Normal View History

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.
type Client interface {
features.Feature
LookupIP(host string) ([]net.IP, error)
}