LookupHost looks up the given host using the local resolver. It returns a slice of that host's addresses.
(ctx context.Context, host string)
| 11 | // LookupHost looks up the given host using the local resolver. |
| 12 | // It returns a slice of that host's addresses. |
| 13 | LookupHost(ctx context.Context, host string) (addrs []string, err error) |
| 14 | } |
| 15 | |
| 16 | // BrokerResolver is an interface implemented by types that translate host |
no outgoing calls
no test coverage detected