mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-04 16:25:06 -05:00
revised resolver strategy
This commit is contained in:
parent
6dad1c0dde
commit
c85b3bbacc
@ -13,7 +13,6 @@ import java.util.List;
|
|||||||
import de.measite.minidns.DNSClient;
|
import de.measite.minidns.DNSClient;
|
||||||
import de.measite.minidns.DNSName;
|
import de.measite.minidns.DNSName;
|
||||||
import de.measite.minidns.dnssec.DNSSECResultNotAuthenticException;
|
import de.measite.minidns.dnssec.DNSSECResultNotAuthenticException;
|
||||||
import de.measite.minidns.dnssec.DNSSECValidationFailedException;
|
|
||||||
import de.measite.minidns.hla.DnssecResolverApi;
|
import de.measite.minidns.hla.DnssecResolverApi;
|
||||||
import de.measite.minidns.hla.ResolverApi;
|
import de.measite.minidns.hla.ResolverApi;
|
||||||
import de.measite.minidns.hla.ResolverResult;
|
import de.measite.minidns.hla.ResolverResult;
|
||||||
@ -95,8 +94,13 @@ public class Resolver {
|
|||||||
private static <D extends Data> ResolverResult<D> resolveWithFallback(DNSName dnsName, Class<D> type) throws IOException {
|
private static <D extends Data> ResolverResult<D> resolveWithFallback(DNSName dnsName, Class<D> type) throws IOException {
|
||||||
try {
|
try {
|
||||||
return DnssecResolverApi.INSTANCE.resolveDnssecReliable(dnsName, type);
|
return DnssecResolverApi.INSTANCE.resolveDnssecReliable(dnsName, type);
|
||||||
} catch (DNSSECValidationFailedException | DNSSECResultNotAuthenticException e) {
|
} catch (DNSSECResultNotAuthenticException e) {
|
||||||
Log.d(Config.LOGTAG,Resolver.class.getSimpleName()+": error resolving "+type.getSimpleName()+" with DNSSEC. Trying DNS instead "+e.getMessage());
|
Log.d(Config.LOGTAG,Resolver.class.getSimpleName()+": error resolving "+type.getSimpleName()+" with DNSSEC. Trying DNS instead.",e);
|
||||||
|
return ResolverApi.INSTANCE.resolve(dnsName, type);
|
||||||
|
} catch (IOException e) {
|
||||||
|
throw e;
|
||||||
|
} catch (Throwable throwable) {
|
||||||
|
Log.d(Config.LOGTAG,Resolver.class.getSimpleName()+": error resolving "+type.getSimpleName()+" with DNSSEC. Trying DNS instead.",throwable);
|
||||||
return ResolverApi.INSTANCE.resolve(dnsName, type);
|
return ResolverApi.INSTANCE.resolve(dnsName, type);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user