mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-22 13:02:44 +01:00
auto-t: hostapd.py: add rekey() utility
Forces GTK/PTK rekeys
This commit is contained in:
parent
908dff807e
commit
7c1e3ab76a
@ -202,6 +202,12 @@ class HostapdCLI(object):
|
||||
cmd = self.cmdline + ['req_beacon', addr, request]
|
||||
ctx.start_process(cmd).wait()
|
||||
|
||||
def rekey(self, address):
|
||||
cmd = 'REKEY_GTK'
|
||||
self.ctrl_sock.sendall(cmd.encode('utf-8'))
|
||||
cmd = 'REKEY_PTK %s' % address
|
||||
self.ctrl_sock.sendall(cmd.encode('utf-8'))
|
||||
|
||||
@property
|
||||
def bssid(self):
|
||||
cmd = self.cmdline + ['status']
|
||||
|
Loading…
Reference in New Issue
Block a user