let DnsHelper provide a fallback solution
This commit is contained in:
parent
069ddddbc1
commit
a954e32b16
|
@ -7,6 +7,7 @@ import android.net.LinkProperties;
|
||||||
import android.net.Network;
|
import android.net.Network;
|
||||||
import android.os.Build;
|
import android.os.Build;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
|
import android.os.Parcelable;
|
||||||
import android.util.Log;
|
import android.util.Log;
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
@ -46,13 +47,19 @@ public class DNSHelper {
|
||||||
public static Bundle getSRVRecord(final Jid jid, Context context) throws IOException {
|
public static Bundle getSRVRecord(final Jid jid, Context context) throws IOException {
|
||||||
final String host = jid.getDomainpart();
|
final String host = jid.getDomainpart();
|
||||||
final List<InetAddress> servers = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP ? getDnsServers(context) : getDnsServersPreLollipop();
|
final List<InetAddress> servers = Build.VERSION.SDK_INT >= Build.VERSION_CODES.LOLLIPOP ? getDnsServers(context) : getDnsServersPreLollipop();
|
||||||
Bundle b = null;
|
Bundle b = new Bundle();
|
||||||
for(InetAddress server : servers) {
|
for(InetAddress server : servers) {
|
||||||
b = queryDNS(host, server);
|
b = queryDNS(host, server);
|
||||||
if (b.containsKey("values")) {
|
if (b.containsKey("values")) {
|
||||||
return b;
|
return b;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
if (!b.containsKey("values")) {
|
||||||
|
Log.d(Config.LOGTAG,"all dns queries failed. provide fallback A record");
|
||||||
|
ArrayList<Parcelable> values = new ArrayList<>();
|
||||||
|
values.add(createNamePortBundle(host,5222));
|
||||||
|
b.putParcelableArrayList("values",values);
|
||||||
|
}
|
||||||
return b;
|
return b;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -160,13 +160,7 @@ public class XmppConnection implements Runnable {
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
final Bundle result = DNSHelper.getSRVRecord(account.getServer(),mXmppConnectionService);
|
final Bundle result = DNSHelper.getSRVRecord(account.getServer(),mXmppConnectionService);
|
||||||
if (result == null) {
|
|
||||||
throw new IOException("unhandled exception in DNS resolver");
|
|
||||||
}
|
|
||||||
final ArrayList<Parcelable> values = result.getParcelableArrayList("values");
|
final ArrayList<Parcelable> values = result.getParcelableArrayList("values");
|
||||||
if ("timeout".equals(result.getString("error"))) {
|
|
||||||
throw new DnsTimeoutException();
|
|
||||||
} else if (values != null) {
|
|
||||||
int i = 0;
|
int i = 0;
|
||||||
boolean socketError = true;
|
boolean socketError = true;
|
||||||
while (socketError && values.size() > i) {
|
while (socketError && values.size() > i) {
|
||||||
|
@ -204,9 +198,6 @@ public class XmppConnection implements Runnable {
|
||||||
if (socketError) {
|
if (socketError) {
|
||||||
throw new UnknownHostException();
|
throw new UnknownHostException();
|
||||||
}
|
}
|
||||||
} else {
|
|
||||||
throw new IOException("unhandled exception in DNS resolver");
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
final OutputStream out = socket.getOutputStream();
|
final OutputStream out = socket.getOutputStream();
|
||||||
tagWriter.setOutputStream(out);
|
tagWriter.setOutputStream(out);
|
||||||
|
|
Loading…
Reference in a new issue