realm: station_profile needs ipv6 to be passed into the initial call of new_station_profile

Signed-off-by: Matthew Stidham <stidmatt@gmail.com>
This commit is contained in:
Matthew Stidham
2021-12-17 13:34:05 -08:00
committed by shivam
parent 28b13d28a8
commit b1a0c8c12f

View File

@@ -826,8 +826,8 @@ class Realm(LFCliBase):
link = self.lfclient_url + link
info = ()
def new_station_profile(self):
return StationProfile(self.lfclient_url, local_realm=self, debug_=self.debug, up=False)
def new_station_profile(self, ipv6=False):
return StationProfile(self.lfclient_url, local_realm=self, debug_=self.debug, ipv6=ipv6, up=False)
def new_multicast_profile(self):
return MULTICASTProfile(self.lfclient_host, self.lfclient_port, local_realm=self, debug_=self.debug, report_timer_=3000)