mirror of
https://github.com/v2fly/v2ray-core.git
synced 2025-01-05 00:47:51 -05:00
13 lines
226 B
Go
13 lines
226 B
Go
|
package dns
|
||
|
|
||
|
import (
|
||
|
"v2ray.com/core/common/net"
|
||
|
"v2ray.com/core/features"
|
||
|
)
|
||
|
|
||
|
type FakeDNSEngine interface {
|
||
|
features.Feature
|
||
|
GetFakeIPForDomain(domain string) []net.Address
|
||
|
GetDomainFromFakeDNS(ip net.Address) string
|
||
|
}
|