mirror of
https://github.com/M66B/FairEmail.git
synced 2025-02-23 22:51:02 +00:00
Use IPv6 address if resolving fails
This commit is contained in:
parent
4b0155ac08
commit
0dad701210
1 changed files with 12 additions and 8 deletions
|
@ -462,14 +462,18 @@ public class EmailService implements AutoCloseable {
|
|||
|
||||
SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(context);
|
||||
boolean prefer_ip4 = prefs.getBoolean("prefer_ip4", true);
|
||||
if (prefer_ip4 && main instanceof Inet6Address) {
|
||||
for (InetAddress iaddr : InetAddress.getAllByName(host))
|
||||
if (iaddr instanceof Inet4Address) {
|
||||
main = iaddr;
|
||||
EntityLog.log(context, "Preferring=" + main);
|
||||
break;
|
||||
}
|
||||
}
|
||||
if (prefer_ip4 &&
|
||||
main instanceof Inet6Address)
|
||||
try {
|
||||
for (InetAddress iaddr : InetAddress.getAllByName(host))
|
||||
if (iaddr instanceof Inet4Address) {
|
||||
main = iaddr;
|
||||
EntityLog.log(context, "Preferring=" + main);
|
||||
break;
|
||||
}
|
||||
} catch (UnknownHostException ex) {
|
||||
Log.w(ex);
|
||||
}
|
||||
|
||||
EntityLog.log(context, "Connecting to " + main);
|
||||
_connect(main, port, require_id, user, authenticator, factory);
|
||||
|
|
Loading…
Reference in a new issue