Files
tun2socks/common/dns/dns.go
2019-08-14 20:42:19 +08:00

13 lines
188 B
Go

package dns
import (
"net"
)
type FakeDNS interface {
Start() error
Stop() error
// IPToHost returns the corresponding domain for the given IP.
IPToHost(ip net.IP) (string, bool)
}