'WiFiManager - stumbler
I tried stumbler to get ssid with iphone os 2.0 and 3.0, I am getting an error and I found that few framework is missing, can anyone tell me how to recover this?
I found a post from StackOverflow mentioning PrivateFrameworks/Apple80211.Framework: how to install this, or anyone can give me the step to apply this stumbler for iphone os 3.0?
Solution 1:[1]
The library is now located at: /System/Library/SystemConfiguration/WiFiManager.bundle/WiFiManager
So you'll need to change your libhandle to:
libHandle = dlopen("/System/Library/SystemConfiguration/WiFiManager.bundle/WiFiManager",RTLD_LAZY);
I should also mention that this is a private Apple framework and as such is likely to be buggy/not very usable - anything you do with it is at your own risk
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | James |
