mirror of
https://github.com/go-gost/core.git
synced 2024-08-11 17:44:43 +00:00
11 lines
159 B
Go
11 lines
159 B
Go
package hosts
|
|
|
|
import (
|
|
"net"
|
|
)
|
|
|
|
// HostMapper is a mapping from hostname to IP.
|
|
type HostMapper interface {
|
|
Lookup(network, host string) ([]net.IP, bool)
|
|
}
|