From 301a55c8c3e97a10b58cfa6a38c3f88c9451d9c5 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Wed, 19 Jan 2022 14:26:51 -0800 Subject: [PATCH] auto-t: hostapd.py: add remove_neighbor() --- autotests/util/hostapd.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/autotests/util/hostapd.py b/autotests/util/hostapd.py index 97422efc..4ae7c42d 100644 --- a/autotests/util/hostapd.py +++ b/autotests/util/hostapd.py @@ -168,6 +168,10 @@ class HostapdCLI(object): cmd = self.cmdline + ['set_neighbor', addr, 'ssid="%s"' % ssid, 'nr=%s' % nr] ctx.start_process(cmd).wait() + def remove_neighbor(self, addr): + cmd = self.cmdline + ['remove_neighbor', addr] + ctx.start_process(cmd).wait() + def send_bss_transition(self, device, nr_list): # Send a BSS transition to a station (device). nr_list should be an # array of tuples containing the BSS address and neighbor report.