blob: e8ad881126c962c2858dbe33d7dbfd080cd8286b [file] [log] [blame]
developerd243af02023-12-21 14:49:33 +08001From 037b1cdac457c03ba44a470a7df38798ba1d5d88 Mon Sep 17 00:00:00 2001
developer1c2c7d42023-01-18 18:20:58 +08002From: Howard Hsu <howard-yh.hsu@mediatek.com>
3Date: Thu, 22 Sep 2022 16:08:09 +0800
developerd243af02023-12-21 14:49:33 +08004Subject: [PATCH 09/54] mtk: hostapd: Do not include HE capab IE if associated
developerb8853042023-02-17 11:50:45 +08005 sta's HE capab IE is invalid
developer1c2c7d42023-01-18 18:20:58 +08006
7---
8 src/ap/ieee802_11.c | 3 ++-
9 1 file changed, 2 insertions(+), 1 deletion(-)
10
11diff --git a/src/ap/ieee802_11.c b/src/ap/ieee802_11.c
developerd243af02023-12-21 14:49:33 +080012index db404a6c7..110ad8c2e 100644
developer1c2c7d42023-01-18 18:20:58 +080013--- a/src/ap/ieee802_11.c
14+++ b/src/ap/ieee802_11.c
developere35b8e42023-10-16 11:04:00 +080015@@ -4863,7 +4863,8 @@ static u16 send_assoc_resp(struct hostapd_data *hapd, struct sta_info *sta,
developer1c2c7d42023-01-18 18:20:58 +080016 #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--
developerdfb50982023-09-11 13:34:36 +0800262.18.0
developer1c2c7d42023-01-18 18:20:58 +080027