diff --git a/autotests/util/hostapd.py b/autotests/util/hostapd.py index 22802be6..5d17da6b 100644 --- a/autotests/util/hostapd.py +++ b/autotests/util/hostapd.py @@ -212,6 +212,10 @@ class HostapdCLI(object): cmd = 'REKEY_GTK' self.ctrl_sock.sendall(cmd.encode('utf-8')) + def resend_m3(self, address): + cmd = 'RESEND_M3 %s' % address + self.ctrl_sock.sendall(cmd.encode('utf-8')) + @property def bssid(self): cmd = self.cmdline + ['status']