Fix hostapd wmm_enabled setup on config reload path
If there is no explicit wmm_enabled parameter in the configuration (i.e., conf->wmm_enabled == -1), the configuration reload path needs to initialize conf->wmm_enabled based on iconf->ieee80211n in hostapd_reload_bss() similarly to what is done in the initial startup case in hostapd_setup_bss(). This fixes issues with RSN capabilities being set incorrectly when WMM is supposed to get enabled and unexpectedly enabling WMM when it is not supposed to be enabled (HT disabled). Either of these issues could show up when asking hostapd to reload the configuration file (and when that file does not set wmm_enabled explicitly). Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
a6509e850e
commit
4d6eb9f2e2
1 changed files with 3 additions and 0 deletions
|
@ -82,6 +82,9 @@ static void hostapd_reload_bss(struct hostapd_data *hapd)
|
|||
if (!hapd->started)
|
||||
return;
|
||||
|
||||
if (hapd->conf->wmm_enabled < 0)
|
||||
hapd->conf->wmm_enabled = hapd->iconf->ieee80211n;
|
||||
|
||||
#ifndef CONFIG_NO_RADIUS
|
||||
radius_client_reconfig(hapd->radius, hapd->conf->radius);
|
||||
#endif /* CONFIG_NO_RADIUS */
|
||||
|
|
Loading…
Reference in a new issue