Skip to content

Commit 0c1b16b

Browse files
committedSep 2, 2021
8273243: Fix indentations in java.net.InetAddress methods
Reviewed-by: dfuchs, bpb
1 parent 152e669 commit 0c1b16b

File tree

1 file changed

+42
-44
lines changed

1 file changed

+42
-44
lines changed
 

‎src/java.base/share/classes/java/net/InetAddress.java

+42-44
Original file line numberDiff line numberDiff line change
@@ -657,46 +657,46 @@ public String getCanonicalHostName() {
657657
*/
658658
private static String getHostFromNameService(InetAddress addr, boolean check) {
659659
String host = null;
660-
try {
661-
// first lookup the hostname
662-
host = nameService.getHostByAddr(addr.getAddress());
663-
664-
/* check to see if calling code is allowed to know
665-
* the hostname for this IP address, ie, connect to the host
666-
*/
667-
if (check) {
668-
@SuppressWarnings("removal")
669-
SecurityManager sec = System.getSecurityManager();
670-
if (sec != null) {
671-
sec.checkConnect(host, -1);
672-
}
660+
try {
661+
// first lookup the hostname
662+
host = nameService.getHostByAddr(addr.getAddress());
663+
664+
/* check to see if calling code is allowed to know
665+
* the hostname for this IP address, ie, connect to the host
666+
*/
667+
if (check) {
668+
@SuppressWarnings("removal")
669+
SecurityManager sec = System.getSecurityManager();
670+
if (sec != null) {
671+
sec.checkConnect(host, -1);
673672
}
673+
}
674674

675-
/* now get all the IP addresses for this hostname,
676-
* and make sure one of them matches the original IP
677-
* address. We do this to try and prevent spoofing.
678-
*/
675+
/* now get all the IP addresses for this hostname,
676+
* and make sure one of them matches the original IP
677+
* address. We do this to try and prevent spoofing.
678+
*/
679679

680-
InetAddress[] arr = InetAddress.getAllByName0(host, check);
681-
boolean ok = false;
680+
InetAddress[] arr = InetAddress.getAllByName0(host, check);
681+
boolean ok = false;
682682

683-
if(arr != null) {
684-
for(int i = 0; !ok && i < arr.length; i++) {
685-
ok = addr.equals(arr[i]);
686-
}
683+
if (arr != null) {
684+
for (int i = 0; !ok && i < arr.length; i++) {
685+
ok = addr.equals(arr[i]);
687686
}
687+
}
688688

689-
//XXX: if it looks a spoof just return the address?
690-
if (!ok) {
691-
host = addr.getHostAddress();
692-
return host;
693-
}
694-
} catch (SecurityException e) {
695-
host = addr.getHostAddress();
696-
} catch (UnknownHostException e) {
689+
//XXX: if it looks like a spoof just return the address?
690+
if (!ok) {
697691
host = addr.getHostAddress();
698-
// let next provider resolve the hostname
692+
return host;
699693
}
694+
} catch (SecurityException e) {
695+
host = addr.getHostAddress();
696+
} catch (UnknownHostException e) {
697+
host = addr.getHostAddress();
698+
// let next provider resolve the hostname
699+
}
700700
return host;
701701
}
702702

@@ -1136,7 +1136,7 @@ private String extractHostAddr(String hostEntry, String host) {
11361136

11371137
// create name service
11381138
nameService = createNameService();
1139-
}
1139+
}
11401140

11411141
/**
11421142
* Create an instance of the NameService interface based on
@@ -1510,21 +1510,19 @@ private static InetAddress[] getAllByName0(String host,
15101510
}
15111511

15121512
static InetAddress[] getAddressesFromNameService(String host, InetAddress reqAddr)
1513-
throws UnknownHostException
1514-
{
1513+
throws UnknownHostException {
15151514
InetAddress[] addresses = null;
15161515
UnknownHostException ex = null;
15171516

1518-
try {
1519-
addresses = nameService.lookupAllHostAddr(host);
1520-
} catch (UnknownHostException uhe) {
1521-
if (host.equalsIgnoreCase("localhost")) {
1522-
addresses = new InetAddress[] { impl.loopbackAddress() };
1523-
}
1524-
else {
1525-
ex = uhe;
1526-
}
1517+
try {
1518+
addresses = nameService.lookupAllHostAddr(host);
1519+
} catch (UnknownHostException uhe) {
1520+
if (host.equalsIgnoreCase("localhost")) {
1521+
addresses = new InetAddress[]{impl.loopbackAddress()};
1522+
} else {
1523+
ex = uhe;
15271524
}
1525+
}
15281526

15291527
if (addresses == null) {
15301528
throw ex == null ? new UnknownHostException(host) : ex;

0 commit comments

Comments
 (0)
Please sign in to comment.