classpath-patches
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [cp-patches] [Patch] java.net.InetAddress


From: Michael Koch
Subject: Re: [cp-patches] [Patch] java.net.InetAddress
Date: Wed, 13 Oct 2004 13:36:38 +0200
User-agent: KMail/1.6.2

On Wednesday 13 October 2004 13:19, Jeroen Frijters wrote:
> Michael Koch wrote:
> > I wrote the attached patch to add the missing method
> > java.net.InetAddress.getCanonicalHostName().
>
> I haven't tried the patch yet, but the following looks wrong:
>
> +    // Try to find the FDQN now
> +    InetAddress address = new Inet4Address(getAddress(), null);
> +    return address.getHostName();
>
> Shouldn't that be:
>
> +    // Try to find the FDQN now
> +    InetAddress address = InetAddress.getByAddress(getAddress());
> +    return address.getHostName();

In this case: it doesnt matter, the result is the same. If hostname is 
null getHostName() does a lookup. Calling getByAddress is IMHO too 
much not needed work like getting all hostnames for an address 
instead of only one.


Michael




reply via email to

[Prev in Thread] Current Thread [Next in Thread]