What is the difference between mWifiManager.startScanActive() and mWifiManager.startScan().
What is the difference between active scan and passive scan?

link|improve this question

42% accept rate
@user I hope you don't mind that I changed the title, because that was really the question – Aleadam May 11 '11 at 4:09
feedback

2 Answers

up vote 2 down vote accepted

Passive scanning listens to beacons sent by the access points. That means waiting for the beacon to be sent (usually a few seconds).

An active scanning will emit probes to those APs immediately.

link|improve this answer
Thank you very much! I have got it: startScanActive is a active scan, and startScan is a passive scan. – Judy May 12 '11 at 3:16
feedback

please note that an active scan will consume more energy and as "ordinary" wifi access points broadcast their beacons several times per second, an active scan is rarely needed. e.g. requesting a list of wifi networks in reach takes approx 0.7 seconds to finish. so this should be sufficient...

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.