gost/pkg/resolver/resolver.go
2022-02-07 22:15:16 +08:00

13 lines
286 B
Go

package resolver
import (
"context"
"net"
)
type Resolver interface {
// Resolve returns a slice of the host's IPv4 and IPv6 addresses.
// The network should be 'ip', 'ip4' or 'ip6', default network is 'ip'.
Resolve(ctx context.Context, network, host string) ([]net.IP, error)
}