My Mac says that there are 10 access points nearby. How do I read that list of access points programmatically, getting both the signal strength and the MAC address of the APs?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Use the Apple80211 Private framework (/System/Library/PrivateFrameworks/Apple80211.framework). Since it is private, there is no official documentation, but you can get a lot of information by googling “apple80211”. I have found http://code.google.com/p/iphone-wireless/wiki/Apple80211Functions to be the best source. It is specifically for iPhone development, but the frameworks are nearly identical. The two biggest differences: the load location and the fact that it can be linked in on the mac instead of loaded at runtime.