]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
HE: Disable HE on channel 14
authorJohn Crispin <john@phrozen.org>
Mon, 20 May 2019 07:55:09 +0000 (09:55 +0200)
committerJouni Malinen <j@w1.fi>
Mon, 27 May 2019 14:40:59 +0000 (17:40 +0300)
Signed-off-by: Shashidhar Lakkavalli <slakkavalli@datto.com>
Signed-off-by: John Crispin <john@phrozen.org>
src/ap/hw_features.c

index dd092bbb12949660cf23143202827aa3c52e3f32..89c3c5f723bebd5bb682ba5e49d7c97c40fbea16 100644 (file)
@@ -863,12 +863,14 @@ int hostapd_select_hw_mode(struct hostapd_iface *iface)
                return -1;
 
        if ((iface->conf->hw_mode == HOSTAPD_MODE_IEEE80211G ||
-            iface->conf->ieee80211n || iface->conf->ieee80211ac) &&
+            iface->conf->ieee80211n || iface->conf->ieee80211ac ||
+            iface->conf->ieee80211ax) &&
            iface->conf->channel == 14) {
-               wpa_printf(MSG_INFO, "Disable OFDM/HT/VHT on channel 14");
+               wpa_printf(MSG_INFO, "Disable OFDM/HT/VHT/HE on channel 14");
                iface->conf->hw_mode = HOSTAPD_MODE_IEEE80211B;
                iface->conf->ieee80211n = 0;
                iface->conf->ieee80211ac = 0;
+               iface->conf->ieee80211ax = 0;
        }
 
        iface->current_mode = NULL;