Add HE Capabilities into ieee802_11_parse_elems()
This is needed to determine whether an association negotiated use of HE. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
5d68c0acd2
commit
ccaf774767
2 changed files with 6 additions and 0 deletions
|
@ -270,6 +270,10 @@ static int ieee802_11_parse_extension(const u8 *pos, size_t elen,
|
||||||
elems->password_id = pos;
|
elems->password_id = pos;
|
||||||
elems->password_id_len = elen;
|
elems->password_id_len = elen;
|
||||||
break;
|
break;
|
||||||
|
case WLAN_EID_EXT_HE_CAPABILITIES:
|
||||||
|
elems->he_capabilities = pos;
|
||||||
|
elems->he_capabilities_len = elen;
|
||||||
|
break;
|
||||||
case WLAN_EID_EXT_OCV_OCI:
|
case WLAN_EID_EXT_OCV_OCI:
|
||||||
elems->oci = pos;
|
elems->oci = pos;
|
||||||
elems->oci_len = elen;
|
elems->oci_len = elen;
|
||||||
|
|
|
@ -93,6 +93,7 @@ struct ieee802_11_elems {
|
||||||
const u8 *password_id;
|
const u8 *password_id;
|
||||||
const u8 *oci;
|
const u8 *oci;
|
||||||
const u8 *multi_ap;
|
const u8 *multi_ap;
|
||||||
|
const u8 *he_capabilities;
|
||||||
|
|
||||||
u8 ssid_len;
|
u8 ssid_len;
|
||||||
u8 supp_rates_len;
|
u8 supp_rates_len;
|
||||||
|
@ -141,6 +142,7 @@ struct ieee802_11_elems {
|
||||||
u8 password_id_len;
|
u8 password_id_len;
|
||||||
u8 oci_len;
|
u8 oci_len;
|
||||||
u8 multi_ap_len;
|
u8 multi_ap_len;
|
||||||
|
u8 he_capabilities_len;
|
||||||
|
|
||||||
struct mb_ies_info mb_ies;
|
struct mb_ies_info mb_ies;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue