2010-10-24 02:39:54 +03:00
|
|
|
--- a/src/ap/hostapd.c
|
|
|
|
+++ b/src/ap/hostapd.c
|
2012-09-13 15:38:51 +03:00
|
|
|
@@ -140,6 +140,20 @@ int hostapd_reload_config(struct hostapd
|
2010-10-24 02:39:54 +03:00
|
|
|
oldconf = hapd->iconf;
|
|
|
|
iface->conf = newconf;
|
|
|
|
|
2012-08-29 19:06:24 +03:00
|
|
|
+ hostapd_select_hw_mode(iface);
|
|
|
|
+ iface->freq = hostapd_hw_get_freq(hapd, newconf->channel);
|
|
|
|
+
|
|
|
|
+ if (hostapd_set_freq(hapd, newconf->hw_mode, iface->freq,
|
|
|
|
+ newconf->channel,
|
|
|
|
+ newconf->ieee80211n,
|
|
|
|
+ newconf->secondary_channel)) {
|
|
|
|
+ wpa_printf(MSG_ERROR, "Could not set channel for "
|
|
|
|
+ "kernel driver");
|
|
|
|
+ }
|
|
|
|
+
|
2010-10-24 02:39:54 +03:00
|
|
|
+ if (iface->current_mode)
|
2012-03-27 13:42:47 +03:00
|
|
|
+ hostapd_prepare_rates(iface, iface->current_mode);
|
2010-10-24 02:39:54 +03:00
|
|
|
+
|
|
|
|
for (j = 0; j < iface->num_bss; j++) {
|
|
|
|
hapd = iface->bss[j];
|
|
|
|
hapd->iconf = newconf;
|