mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2024-11-25 16:58:41 -05:00
tests: Use TYPE=ONLY scan for scan_for_bss
This avoids unexpected connection attempts in cases a matching network is enabled and there is no existing connection (e.g., when testing with ENABLE_NETWORK no-connect option). Signed-off-by: Jouni Malinen <j@w1.fi>
This commit is contained in:
parent
bf700cc3d2
commit
bbf20ca265
@ -718,7 +718,7 @@ class WpaSupplicant:
|
|||||||
if not force_scan and self.get_bss(bssid) is not None:
|
if not force_scan and self.get_bss(bssid) is not None:
|
||||||
return
|
return
|
||||||
for i in range(0, 10):
|
for i in range(0, 10):
|
||||||
self.scan(freq=freq)
|
self.scan(freq=freq, type="ONLY")
|
||||||
if self.get_bss(bssid) is not None:
|
if self.get_bss(bssid) is not None:
|
||||||
return
|
return
|
||||||
raise Exception("Could not find BSS " + bssid + " in scan")
|
raise Exception("Could not find BSS " + bssid + " in scan")
|
||||||
|
Loading…
Reference in New Issue
Block a user