3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-12-22 21:22:37 +01:00

scan: parse configurator connectivity element

This element has no data and indicates the AP supports configuring
stations via DPP while also serving current stations.
This commit is contained in:
James Prestwood 2021-11-29 15:12:56 -08:00 committed by Denis Kenzior
parent 5ab1a1298f
commit 945710fae1
2 changed files with 4 additions and 0 deletions

View File

@ -1097,6 +1097,9 @@ static void scan_parse_vendor_specific(struct scan_bss *bss, const void *data,
return;
}
if (is_ie_wfa_ie(data, len, IE_WFA_OI_CONFIGURATOR_CONNECTIVITY))
bss->dpp_configurator = true;
if (!ie_parse_network_cost(data, len, &cost_level, &cost_flags)) {
bss->cost_level = cost_level;
bss->cost_flags = cost_flags;

View File

@ -90,6 +90,7 @@ struct scan_bss {
bool hs20_dgaf_disable : 1;
uint8_t cost_level : 3;
uint8_t cost_flags : 4;
bool dpp_configurator : 1;
};
struct scan_parameters {