mirror of
https://github.com/vanhoefm/fragattacks.git
synced 2025-01-17 18:34:03 -05:00
tests: Reset hostapd state with FLUSH between test cases
This is similar to the FLUSH command for wpa_supplicant. Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
b56f6c8869
commit
f8949f5f8f
@ -46,6 +46,9 @@ class HostapdGlobal:
|
|||||||
def relog(self):
|
def relog(self):
|
||||||
self.ctrl.request("RELOG")
|
self.ctrl.request("RELOG")
|
||||||
|
|
||||||
|
def flush(self):
|
||||||
|
self.ctrl.request("FLUSH")
|
||||||
|
|
||||||
|
|
||||||
class Hostapd:
|
class Hostapd:
|
||||||
def __init__(self, ifname):
|
def __init__(self, ifname):
|
||||||
|
@ -42,6 +42,7 @@ def reset_devs(dev, apdev):
|
|||||||
|
|
||||||
try:
|
try:
|
||||||
hapd = HostapdGlobal()
|
hapd = HostapdGlobal()
|
||||||
|
hapd.flush()
|
||||||
hapd.remove('wlan3-3')
|
hapd.remove('wlan3-3')
|
||||||
hapd.remove('wlan3-2')
|
hapd.remove('wlan3-2')
|
||||||
for ap in apdev:
|
for ap in apdev:
|
||||||
|
Loading…
Reference in New Issue
Block a user