(ctx context.Context, addr string)
| 75 | } |
| 76 | |
| 77 | func (r *timeoutResolver) LookupAddr(ctx context.Context, addr string) (names []string, err error) { |
| 78 | ctx, cancel := context.WithTimeout(ctx, r.timeout) |
| 79 | defer cancel() |
| 80 | |
| 81 | return r.lookup.LookupAddr(ctx, addr) |
| 82 | } |
nothing calls this directly
no test coverage detected