mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-12 15:27:16 -05:00
f8ac919d66
* Move `filterIP` from `hosts.go` to `dnscommon.go` * Implement adding pools for fakedns.HolderMulti * Implement per-client fakedns for DNS app * Remove `dns.ClientWithIPOption` and replace with new programming model * Implement JSON config support for new fakedns config * Fix lint and tests * Fix some codacy analysis
51 lines
1.6 KiB
Go
51 lines
1.6 KiB
Go
package dns
|
|
|
|
import (
|
|
"github.com/v2fly/v2ray-core/v5/common/net"
|
|
"github.com/v2fly/v2ray-core/v5/features"
|
|
)
|
|
|
|
// FakeDNSEngine is a V2Ray feature for converting between domain and fake IPs.
|
|
//
|
|
// v2ray:api:beta
|
|
type FakeDNSEngine interface {
|
|
features.Feature
|
|
|
|
// GetFakeIPForDomain returns fake IP addresses for the given domain, and registers the domain with the returned IPs.
|
|
GetFakeIPForDomain(domain string) []net.Address
|
|
|
|
// GetDomainFromFakeDNS returns the bound domain name for the given fake IP.
|
|
GetDomainFromFakeDNS(ip net.Address) string
|
|
}
|
|
|
|
// FakeDNSEngineRev0 adds additional APIs for FakeDNSEngine.
|
|
//
|
|
// v2ray:api:beta
|
|
type FakeDNSEngineRev0 interface {
|
|
FakeDNSEngine
|
|
|
|
// IsIPInIPPool tests whether the given IP address resides in managed fake IP pools.
|
|
IsIPInIPPool(ip net.Address) bool
|
|
|
|
// GetFakeIPForDomain3 registers and returns fake IP addresses for the given domain in IPv4 and/or IPv6.
|
|
GetFakeIPForDomain3(domain string, IPv4 bool, IPv6 bool) []net.Address
|
|
}
|
|
|
|
// ClientWithFakeDNS is an optional feature for utilizing FakeDNS feature of DNS client.
|
|
//
|
|
// v2ray:api:beta
|
|
type ClientWithFakeDNS interface {
|
|
// AsFakeDNSClient converts the client to dns.Client that enables FakeDNS querying option.
|
|
AsFakeDNSClient() Client
|
|
|
|
// AsFakeDNSEngine converts the client to dns.FakeDNSEngine that could serve FakeDNSEngine feature.
|
|
AsFakeDNSEngine() FakeDNSEngine
|
|
}
|
|
|
|
// FakeDNSEngineType returns the type of FakeDNSEngine interface. Can be used for implementing common.HasType.
|
|
//
|
|
// v2ray:api:beta
|
|
func FakeDNSEngineType() interface{} {
|
|
return (*FakeDNSEngine)(nil)
|
|
}
|