retrieve DNS response from cache
This commit is contained in:
parent
97acd16422
commit
1da9d42065
|
@ -70,6 +70,9 @@ public class AndroidDNSClient extends AbstractDNSClient {
|
||||||
for (final DNSServer dnsServer : getDNSServers()) {
|
for (final DNSServer dnsServer : getDNSServers()) {
|
||||||
final QuestionServerTuple cacheKey = new QuestionServerTuple(dnsServer, question);
|
final QuestionServerTuple cacheKey = new QuestionServerTuple(dnsServer, question);
|
||||||
final DNSMessage cachedResponse = queryCache(cacheKey);
|
final DNSMessage cachedResponse = queryCache(cacheKey);
|
||||||
|
if (cachedResponse != null) {
|
||||||
|
return cachedResponse;
|
||||||
|
}
|
||||||
final DNSMessage response = this.networkDataSource.query(question, dnsServer);
|
final DNSMessage response = this.networkDataSource.query(question, dnsServer);
|
||||||
if (response == null) {
|
if (response == null) {
|
||||||
continue;
|
continue;
|
||||||
|
|
Loading…
Reference in a new issue