developer | 9e5bcc5 | 2022-09-27 10:30:15 +0800 | [diff] [blame] | 1 | From 539d31649861447af9c555d32e1b2c6559b549aa Mon Sep 17 00:00:00 2001 |
| 2 | From: Howard Hsu <howard-yh.hsu@mediatek.com> |
| 3 | Date: Thu, 22 Sep 2022 16:08:09 +0800 |
| 4 | Subject: [PATCH] Do not include HE capab IE if associated sta's HE capab IE is |
| 5 | invalid |
| 6 | |
| 7 | --- |
| 8 | src/ap/ieee802_11.c | 3 ++- |
| 9 | 1 file changed, 2 insertions(+), 1 deletion(-) |
| 10 | |
| 11 | diff --git a/src/ap/ieee802_11.c b/src/ap/ieee802_11.c |
| 12 | index a83194a..adf15d3 100644 |
| 13 | --- a/src/ap/ieee802_11.c |
| 14 | +++ b/src/ap/ieee802_11.c |
| 15 | @@ -5186,7 +5186,8 @@ static u16 send_assoc_resp(struct hostapd_data *hapd, struct sta_info *sta, |
| 16 | #endif /* CONFIG_IEEE80211AC */ |
| 17 | |
| 18 | #ifdef CONFIG_IEEE80211AX |
| 19 | - if (hapd->iconf->ieee80211ax && !hapd->conf->disable_11ax) { |
| 20 | + if (hapd->iconf->ieee80211ax && !hapd->conf->disable_11ax && |
| 21 | + sta->flags & WLAN_STA_HE) { |
| 22 | p = hostapd_eid_he_capab(hapd, p, IEEE80211_MODE_AP); |
| 23 | p = hostapd_eid_he_operation(hapd, p); |
| 24 | p = hostapd_eid_cca(hapd, p); |
| 25 | -- |
| 26 | 2.18.0 |
| 27 | |