From d486854a6ef3d1ee494957acfb8b20c31164b5e5 Mon Sep 17 00:00:00 2001 From: lanforge Date: Wed, 7 Apr 2021 10:38:39 -0700 Subject: [PATCH] add new_lf_data_collection to realm Signed-off-by: lanforge --- py-json/realm.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/py-json/realm.py b/py-json/realm.py index 36461705..d31aa43c 100755 --- a/py-json/realm.py +++ b/py-json/realm.py @@ -19,6 +19,7 @@ from wifi_monitor_profile import WifiMonitor from gen_cxprofile import GenCXProfile from qvlan_profile import QVLANProfile from port_utils import PortUtils +from lfdata import LFDataCollection # ---- ---- ---- ---- Other Imports ---- ---- ---- ---- import re import time @@ -921,6 +922,9 @@ class Realm(LFCliBase): # test_group_profile = test_group_profile2.TestGroupProfile2(self.lfclient_host, self.lfclient_port, local_realm=self, debug_=self.debug) return test_group_profile + def new_lf_data_collection(self): + return LFDataCollection(local_realm=self) + class PacketFilter(): def get_filter_wlan_assoc_packets(self, ap_mac, sta_mac):