diff options
author | Felix Fietkau <nbd@openwrt.org> | 2012-09-13 12:38:51 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2012-09-13 12:38:51 +0000 |
commit | 5d57cd2414dbfad491943e83a0e42e229f297977 (patch) | |
tree | 8503ead2c3bd47cd5e85f1023254439a32dca9f4 /package/hostapd/patches/400-noscan.patch | |
parent | dac5ed38b63d31c26339916517c27b30dc8ab1c6 (diff) | |
download | upstream-5d57cd2414dbfad491943e83a0e42e229f297977.tar.gz upstream-5d57cd2414dbfad491943e83a0e42e229f297977.tar.bz2 upstream-5d57cd2414dbfad491943e83a0e42e229f297977.zip |
hostapd: update to 2012-09-10
SVN-Revision: 33392
Diffstat (limited to 'package/hostapd/patches/400-noscan.patch')
-rw-r--r-- | package/hostapd/patches/400-noscan.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/package/hostapd/patches/400-noscan.patch b/package/hostapd/patches/400-noscan.patch new file mode 100644 index 0000000000..69d026b3da --- /dev/null +++ b/package/hostapd/patches/400-noscan.patch @@ -0,0 +1,32 @@ +--- a/hostapd/config_file.c ++++ b/hostapd/config_file.c +@@ -2485,6 +2485,8 @@ static int hostapd_config_fill(struct ho + } + #endif /* CONFIG_IEEE80211W */ + #ifdef CONFIG_IEEE80211N ++ } else if (os_strcmp(buf, "noscan") == 0) { ++ conf->noscan = atoi(pos); + } else if (os_strcmp(buf, "ieee80211n") == 0) { + conf->ieee80211n = atoi(pos); + } else if (os_strcmp(buf, "ht_capab") == 0) { +--- a/src/ap/ap_config.h ++++ b/src/ap/ap_config.h +@@ -497,6 +497,7 @@ struct hostapd_config { + + int ht_op_mode_fixed; + u16 ht_capab; ++ int noscan; + int ieee80211n; + int secondary_channel; + int require_ht; +--- a/src/ap/hw_features.c ++++ b/src/ap/hw_features.c +@@ -493,7 +493,7 @@ static int ieee80211n_check_40mhz(struct + { + struct wpa_driver_scan_params params; + +- if (!iface->conf->secondary_channel) ++ if (!iface->conf->secondary_channel || iface->conf->noscan) + return 0; /* HT40 not used */ + + wpa_printf(MSG_DEBUG, "Scan for neighboring BSSes prior to enabling " |