| 4229 | } |
| 4230 | |
| 4231 | type staticResolver struct { |
| 4232 | addrs []net.IPAddr |
| 4233 | } |
| 4234 | |
| 4235 | func (r *staticResolver) LookupIPAddr(ctx context.Context, host string) ([]net.IPAddr, error) { |
| 4236 | return r.addrs, nil |
nothing calls this directly
no outgoing calls
no test coverage detected