Are you having a problem figuring out how to get interface info on Mac OS X using ioctl/SIOCGIFADDR/SIOCGIFCONF?
I had a lot of trouble getting code that worked fine on Linux to work on Mac OS X today.
|
|
|
The mechanism to get MAC addresses is entirely different on BSD-derived OSes than on Linux. This includes OS X. Here's code I use that works on Linux and OS X, and probably on the BSDs, too:
It's up to you to work out how to get the right Notice that the default interface name parameter for these functions is the default for the first Ethernet interface on Linux and OS X boxes. You may need to override this for other OSes, or pass another value if you're interested in the MAC address for a different interface. |
|||
|
|
|
Copy-paste to Works fine on Mac OSX and iOS iPad/iPhone:
|
|||
|
|
|
This thread matched my problem somewhat: http://discussions.apple.com/thread.jspa?messageID=10935410&tstart=0 This thread helped a lot: https://lists.isc.org/pipermail/dhcp-hackers/2007-September/000767.html because that thread eventually mentions that getifaddrs() should be used instead. The man page on Ubuntu 10.04 had a great example of how to use getifaddrs and using it as a reference helped me figure out code that worked on both Mac and Linux. I don't want anyone else to waste time on something so simple, so I'm posting and answering myself here. Hoping that my post helps you... |
|||
|
|