possible dns fixes
This commit is contained in:
parent
de06cb38d1
commit
50410dad33
|
@ -143,12 +143,21 @@ public class DNSHelper {
|
|||
Bundle namePort = new Bundle();
|
||||
namePort.putString("name", srv.getName());
|
||||
namePort.putInt("port", srv.getPort());
|
||||
if (ips6.containsKey(srv.getName())) {
|
||||
ArrayList<String> ip = ips6.get(srv.getName());
|
||||
Collections.shuffle(ip, rnd);
|
||||
namePort.putString("ip", ip.get(0));
|
||||
values.add(namePort);
|
||||
}
|
||||
if (ips4.containsKey(srv.getName())) {
|
||||
ArrayList<String> ip = ips4.get(srv.getName());
|
||||
Collections.shuffle(ip, rnd);
|
||||
namePort.putString("ipv4", ip.get(0));
|
||||
namePort.putString("ip", ip.get(0));
|
||||
values.add(namePort);
|
||||
}
|
||||
if (!ips6.containsKey(srv.getName()) && !ips4.containsKey(srv.getName())) {
|
||||
values.add(namePort);
|
||||
}
|
||||
values.add(namePort);
|
||||
}
|
||||
bundle.putParcelableArrayList("values", values);
|
||||
} catch (SocketTimeoutException e) {
|
||||
|
|
|
@ -171,7 +171,7 @@ public class XmppConnection implements Runnable {
|
|||
srvRecordServer = "";
|
||||
}
|
||||
int srvRecordPort = namePort.getInt("port");
|
||||
String srvIpServer = namePort.getString("ipv4");
|
||||
String srvIpServer = namePort.getString("ip");
|
||||
InetSocketAddress addr;
|
||||
if (srvIpServer != null) {
|
||||
addr = new InetSocketAddress(srvIpServer, srvRecordPort);
|
||||
|
|
Loading…
Reference in New Issue