(Name name, int type, int minCred)
| 514 | } |
| 515 | |
| 516 | private RRset [] |
| 517 | findRecords(Name name, int type, int minCred) { |
| 518 | SetResponse cr = lookupRecords(name, type, minCred); |
| 519 | if (cr.isSuccessful()) |
| 520 | return cr.answers(); |
| 521 | else |
| 522 | return null; |
| 523 | } |
| 524 | |
| 525 | /** |
| 526 | * Looks up credible Records in the Cache (a wrapper around lookupRecords). |
no test coverage detected