[openwrt/openwrt] hostapd: keep HE capability after channel switch in AP+STA/Mesh

LEDE Commits lede-commits at lists.infradead.org
Tue Dec 21 15:45:05 PST 2021


dangole pushed a commit to openwrt/openwrt.git, branch master:
https://git.openwrt.org/0210f37534b451a895a5fd647fd5a4dc551b3cf7

commit 0210f37534b451a895a5fd647fd5a4dc551b3cf7
Author: Arnout Vandecappelle (Essensium/Mind) <arnout at mind.be>
AuthorDate: Tue Dec 21 18:41:33 2021 +0100

    hostapd: keep HE capability after channel switch in AP+STA/Mesh
    
    The auto-ht option already kept HT and VHT support, but wasn't updated
    to support HE (11ax).
    
    Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout at mind.be>
---
 package/network/services/hostapd/patches/370-ap_sta_support.patch | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/package/network/services/hostapd/patches/370-ap_sta_support.patch b/package/network/services/hostapd/patches/370-ap_sta_support.patch
index c5cad3bb8d..535164d802 100644
--- a/package/network/services/hostapd/patches/370-ap_sta_support.patch
+++ b/package/network/services/hostapd/patches/370-ap_sta_support.patch
@@ -235,13 +235,14 @@
  
 --- a/hostapd/ctrl_iface.c
 +++ b/hostapd/ctrl_iface.c
-@@ -2883,6 +2883,11 @@ static int hostapd_ctrl_iface_chan_switc
+@@ -2883,6 +2883,12 @@ static int hostapd_ctrl_iface_chan_switc
  		return 0;
  	}
  
 +	if (os_strstr(pos, " auto-ht")) {
 +		settings.freq_params.ht_enabled = iface->conf->ieee80211n;
 +		settings.freq_params.vht_enabled = iface->conf->ieee80211ac;
++		settings.freq_params.he_enabled = iface->conf->ieee80211ax;
 +	}
 +
  	for (i = 0; i < iface->num_bss; i++) {



More information about the lede-commits mailing list