TDLS: Support TDLS operations in HE mode
Determine if the TDLS peer is HE capable based on HE Capability element received in the TDLS Setup Response frame. Indicate the peer's HE capabilities to the driver through sta_add(). Signed-off-by: Sreeramya Soratkal <ssramya@codeaurora.org>
This commit is contained in:
parent
184c824689
commit
50baf345b4
7 changed files with 56 additions and 5 deletions
|
@ -778,6 +778,8 @@ static int wpa_supplicant_tdls_peer_addset(
|
|||
const u8 *supp_rates, size_t supp_rates_len,
|
||||
const struct ieee80211_ht_capabilities *ht_capab,
|
||||
const struct ieee80211_vht_capabilities *vht_capab,
|
||||
const struct ieee80211_he_capabilities *he_capab,
|
||||
size_t he_capab_len,
|
||||
u8 qosinfo, int wmm, const u8 *ext_capab, size_t ext_capab_len,
|
||||
const u8 *supp_channels, size_t supp_channels_len,
|
||||
const u8 *supp_oper_classes, size_t supp_oper_classes_len)
|
||||
|
@ -801,6 +803,8 @@ static int wpa_supplicant_tdls_peer_addset(
|
|||
|
||||
params.ht_capabilities = ht_capab;
|
||||
params.vht_capabilities = vht_capab;
|
||||
params.he_capab = he_capab;
|
||||
params.he_capab_len = he_capab_len;
|
||||
params.qosinfo = qosinfo;
|
||||
params.listen_interval = 0;
|
||||
params.supp_rates = supp_rates;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue