On Mon, 2008-04-21 at 09:03 +0200, Robert Schuster wrote:
> + public boolean isUp()
> + throws SocketException
> + {
> + return VMNetworkInterface.isUp(netif.name);
> + }
> + public boolean isPointToPoint()
> + throws SocketException
> + {
> + return VMNetworkInterface.isUp(netif.name);
> + }
> + public boolean isLoopback()
> + throws SocketException
> + {
> + return VMNetworkInterface.isUp(netif.name);
> + }
> + public boolean supportsMulticast()
> + throws SocketException
> + {
> + return VMNetworkInterface.isUp(netif.name);
> + }
Seems like a copy-paste bug.
- twisti