scan: set force_default_sae_group if OUI matches

This commit is contained in:
James Prestwood 2021-08-25 10:12:55 -07:00 committed by Denis Kenzior
parent f26f51bf8c
commit 194b4cf60e
2 changed files with 4 additions and 1 deletions

View File

@ -924,7 +924,9 @@ static bool scan_parse_vendor_specific(struct scan_bss *bss, const void *data,
return false;
bss->hs20_capable = true;
} else
} else if (is_ie_default_sae_group_oui(data, len))
bss->force_default_sae_group = true;
else
return false;
return true;

View File

@ -83,6 +83,7 @@ struct scan_bss {
bool vht_capable : 1;
bool anqp_capable : 1;
bool hs20_capable : 1;
bool force_default_sae_group : 1;
};
struct scan_parameters {