in NgnNetworkService.java
From
kvp = it.next();
final InetAddress address = kvp.getValue();
if (kvp.getKey().equal(USB_INTERFACE_NAME))
{
continue;
}
return address.getHostAddress();
to :
kvp = it.next();
final InetAddress address = kvp.getValue();
if (!kvp.getKey().contains(USB_INTERFACE_NAME))
{
continue;
}
return address.getHostAddress();
some device is not working, so must change it.
Original issue reported on code.google.com by infoh...@gmail.com on 15 Nov 2013 at 6:30
Original issue reported on code.google.com by
infoh...@gmail.com
on 15 Nov 2013 at 6:30