()
| 190 | } |
| 191 | |
| 192 | private final void |
| 193 | reset() { |
| 194 | iterations = 0; |
| 195 | foundAlias = false; |
| 196 | done = false; |
| 197 | doneCurrent = false; |
| 198 | aliases = null; |
| 199 | answers = null; |
| 200 | result = -1; |
| 201 | error = null; |
| 202 | nxdomain = false; |
| 203 | badresponse = false; |
| 204 | badresponse_error = null; |
| 205 | networkerror = false; |
| 206 | timedout = false; |
| 207 | nametoolong = false; |
| 208 | referral = false; |
| 209 | if (temporary_cache) |
| 210 | cache.clearCache(); |
| 211 | } |
| 212 | |
| 213 | /** |
| 214 | * Create a Lookup object that will find records of the given name, type, |
no test coverage detected