From: nbd Date: Fri, 25 Jul 2014 14:29:58 +0000 (+0000) Subject: hostapd: prevent spurious 20/40 mhz channel bandwidth switches if noscan is enabled X-Git-Url: https://git.archive.openwrt.org/?a=commitdiff_plain;h=b7133a29e5be3e6794472721efc6e286870e1532;p=openwrt.git hostapd: prevent spurious 20/40 mhz channel bandwidth switches if noscan is enabled Signed-off-by: Felix Fietkau git-svn-id: svn://svn.openwrt.org/openwrt/trunk@41828 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- diff --git a/package/network/services/hostapd/patches/300-noscan.patch b/package/network/services/hostapd/patches/300-noscan.patch index 4ea26b6c72..ac296b8e38 100644 --- a/package/network/services/hostapd/patches/300-noscan.patch +++ b/package/network/services/hostapd/patches/300-noscan.patch @@ -30,3 +30,25 @@ return 0; /* HT40 not used */ hostapd_set_state(iface, HAPD_IFACE_HT_SCAN); +--- a/src/ap/ieee802_11_ht.c ++++ b/src/ap/ieee802_11_ht.c +@@ -221,6 +221,9 @@ void hostapd_2040_coex_action(struct hos + if (!(iface->conf->ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET)) + return; + ++ if (iface->conf->noscan) ++ return; ++ + hdr_len = data - (u8 *) mgmt; + if (hdr_len > len) + return; +@@ -319,6 +322,9 @@ void ht40_intolerant_add(struct hostapd_ + if (iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G) + return; + ++ if (iface->conf->noscan) ++ return; ++ + wpa_printf(MSG_INFO, "HT: Forty MHz Intolerant is set by STA " MACSTR + " in Association Request", MAC2STR(sta->addr)); +