mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-26 10:39:23 +01:00
scan: set force_default_sae_group if OUI matches
This commit is contained in:
parent
f26f51bf8c
commit
194b4cf60e
@ -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;
|
||||
|
@ -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 {
|
||||
|
Loading…
Reference in New Issue
Block a user