added on_unfiltered_wifi_list

Signed-off-by: Casey Diemel <diemelcw@gmail.com>
This commit is contained in:
Casey Diemel 2019-11-28 14:39:15 -05:00
parent e44ebac43f
commit e72fd08fb4

@ -122,6 +122,11 @@ class Example(plugins.Plugin):
def on_wifi_update(self, agent, access_points):
pass
# called when the agent refreshed an unfiltered access point list
# this list contains all access points that were detected BEFORE filtering
def on_unfiltered_ap_list(self, agent, access_points):
pass
# called when the agent is sending an association frame
def on_association(self, agent, access_point):
pass