add chaos_calmer branch
[15.05/openwrt.git] / package / network / services / hostapd / patches / 300-noscan.patch
1 --- a/hostapd/config_file.c
2 +++ b/hostapd/config_file.c
3 @@ -2771,6 +2771,10 @@ static int hostapd_config_fill(struct ho
4                 }
5  #endif /* CONFIG_IEEE80211W */
6  #ifdef CONFIG_IEEE80211N
7 +       } else if (os_strcmp(buf, "noscan") == 0) {
8 +               conf->noscan = atoi(pos);
9 +       } else if (os_strcmp(buf, "ht_coex") == 0) {
10 +               conf->no_ht_coex = !atoi(pos);
11         } else if (os_strcmp(buf, "ieee80211n") == 0) {
12                 conf->ieee80211n = atoi(pos);
13         } else if (os_strcmp(buf, "ht_capab") == 0) {
14 --- a/src/ap/ap_config.h
15 +++ b/src/ap/ap_config.h
16 @@ -619,6 +619,8 @@ struct hostapd_config {
17  
18         int ht_op_mode_fixed;
19         u16 ht_capab;
20 +       int noscan;
21 +       int no_ht_coex;
22         int ieee80211n;
23         int secondary_channel;
24         int require_ht;
25 --- a/src/ap/hw_features.c
26 +++ b/src/ap/hw_features.c
27 @@ -461,7 +461,7 @@ static int ieee80211n_check_40mhz(struct
28         struct wpa_driver_scan_params params;
29         int ret;
30  
31 -       if (!iface->conf->secondary_channel)
32 +       if (!iface->conf->secondary_channel || iface->conf->noscan)
33                 return 0; /* HT40 not used */
34  
35         hostapd_set_state(iface, HAPD_IFACE_HT_SCAN);
36 --- a/src/ap/ieee802_11_ht.c
37 +++ b/src/ap/ieee802_11_ht.c
38 @@ -221,6 +221,9 @@ void hostapd_2040_coex_action(struct hos
39         if (!(iface->conf->ht_capab & HT_CAP_INFO_SUPP_CHANNEL_WIDTH_SET))
40                 return;
41  
42 +       if (iface->conf->noscan || iface->conf->no_ht_coex)
43 +               return;
44 +
45         if (len < IEEE80211_HDRLEN + 2 + sizeof(*bc_ie))
46                 return;
47  
48 @@ -346,6 +349,9 @@ void ht40_intolerant_add(struct hostapd_
49         if (iface->current_mode->mode != HOSTAPD_MODE_IEEE80211G)
50                 return;
51  
52 +       if (iface->conf->noscan || iface->conf->no_ht_coex)
53 +               return;
54 +
55         wpa_printf(MSG_INFO, "HT: Forty MHz Intolerant is set by STA " MACSTR
56                    " in Association Request", MAC2STR(sta->addr));
57