Feature #3654
Updated by Junxiao Shi over 8 years ago
Listing Currently, enumerating of available network interfaces in `core/network-interface` is necessary to enable multicast Faces. Currently, `listNetworkInterfaces` function is implemented based on `getifaddrs`. `::getifaddrs` function. On some platforms, including Android NDK, `getifaddrs` this call is unavailable. not available. However, similar functionality, at least in the simplified form, can be implemented using direct `ioctl` system calls. (Listing available interfaces necessary in order to enable multicast Faces.) This task is to make `ioctl` based implementation of `listNetworkInterfaces` method, at the minimum targeting Android 19 platform.