I'm trying to get the mac addresses of all devices connected to my wireless access point (which is running on the computer itself). So far I've looked at the TCPConnectionInterface class and NetworkInterface class but couldn't find any methods for retrieving this information. I also tried the ManagedWiFi API but this only seems to show the information about the wireless networks which are within reach.
I would like to do something like this:
foreach (ConnectedDevice device : MyWirelessAccessPoint.getDevices()) {
Console.writeline(device.getMacAddress());
}
Any suggestions on how this can be accomplished ?