Android NetworkInterface. What are the meanings of names of NetworkInterface?
I want to get available network of the current device, so I firstly get networkinterfaces list: NetworkInterface.getNetworkInterfaces(); Then, iterate every one: NetworkInterface intf = en.nextElement(); String name = intf.getName(); Here is the problem. The names of returned value of 'name' are: rmnet_data1, dymmy0, wlan0, rmnet_usb0, intf, lo, p2p0, sit0. (on my device) I want to know what are the meanings of them. jeyoor Since Android is based on Linux, Linux network interface naming patterns apply to Android devices. Here's some resources on *nix network interface naming a tour of classic