mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-21 13:29:25 +01:00
scan: parse station count from BSS load IE
This will be used in BSS ranking
This commit is contained in:
parent
7465abe5f8
commit
7c5b40ff6b
@ -1343,8 +1343,8 @@ static bool scan_parse_bss_information_elements(struct scan_bss *bss,
|
||||
iter.len + 2);
|
||||
break;
|
||||
case IE_TYPE_BSS_LOAD:
|
||||
if (ie_parse_bss_load(&iter, NULL, &bss->utilization,
|
||||
NULL) < 0)
|
||||
if (ie_parse_bss_load(&iter, &bss->sta_count,
|
||||
&bss->utilization, NULL) < 0)
|
||||
l_warn("Unable to parse BSS Load IE for "
|
||||
MAC, MAC_STR(bss->addr));
|
||||
else
|
||||
|
@ -67,6 +67,7 @@ struct scan_bss {
|
||||
uint8_t ssid[SSID_MAX_SIZE];
|
||||
uint8_t ssid_len;
|
||||
uint8_t utilization;
|
||||
uint16_t sta_count;
|
||||
uint8_t cc[3];
|
||||
uint16_t rank;
|
||||
uint64_t time_stamp;
|
||||
|
Loading…
Reference in New Issue
Block a user