(ctx context.Context, host string)
| 14 | type Resolver interface { |
| 15 | LookupHost(ctx context.Context, host string) (addrs []string, err error) |
| 16 | LookupIPAddr(ctx context.Context, host string) ([]net.IPAddr, error) |
| 17 | LookupPort(ctx context.Context, network, service string) (port int, err error) |
| 18 | LookupCNAME(ctx context.Context, host string) (cname string, err error) |
| 19 | LookupSRV(ctx context.Context, service, proto, name string) (cname string, addrs []*net.SRV, err error) |
no outgoing calls