1 --- a/hostapd/ctrl_iface.c
2 +++ b/hostapd/ctrl_iface.c
4 #include "wps/wps_defs.h"
6 #include "ctrl_iface.h"
7 +#include "config_file.h"
11 @@ -49,6 +50,7 @@ struct wpa_ctrl_dst {
15 +static char *reload_opts = NULL;
17 static void hostapd_ctrl_iface_send(struct hostapd_data *hapd, int level,
18 const char *buf, size_t len);
19 @@ -323,6 +325,66 @@ static int hostapd_ctrl_iface_disassocia
23 +static int hostapd_ctrl_iface_set_down(struct hostapd_data *hapd)
25 + if (hapd->driver->stop_ap)
26 + hapd->driver->stop_ap(hapd->drv_priv);
30 +static char *get_option(char *opt, char *str)
32 + int len = strlen(str);
34 + if (!strncmp(opt, str, len))
40 +static struct hostapd_config *hostapd_ctrl_iface_config_read(const char *fname)
42 + struct hostapd_config *conf;
45 + conf = hostapd_config_read(fname);
49 + for (opt = strtok(reload_opts, " ");
51 + opt = strtok(NULL, " ")) {
53 + if ((val = get_option(opt, "channel=")))
54 + conf->channel = atoi(val);
55 + else if ((val = get_option(opt, "ht_capab=")))
56 + conf->ht_capab = atoi(val);
57 + else if ((val = get_option(opt, "ht_capab_mask=")))
58 + conf->ht_capab &= atoi(val);
59 + else if ((val = get_option(opt, "sec_chan=")))
60 + conf->secondary_channel = atoi(val);
61 + else if ((val = get_option(opt, "hwmode=")))
62 + conf->hw_mode = atoi(val);
63 + else if ((val = get_option(opt, "ieee80211n=")))
64 + conf->ieee80211n = atoi(val);
72 +static int hostapd_ctrl_iface_reload(struct hostapd_data *hapd, char *txt)
74 + struct hostapd_iface *iface = hapd->iface;
76 + iface->config_read_cb = hostapd_ctrl_iface_config_read;
79 + hostapd_reload_config(iface);
81 + iface->config_read_cb = hostapd_config_read;
84 #ifdef CONFIG_IEEE80211W
86 @@ -873,6 +935,10 @@ static void hostapd_ctrl_iface_receive(i
89 #endif /* CONFIG_NO_RADIUS */
90 + } else if (os_strcmp(buf, "DOWN") == 0) {
91 + hostapd_ctrl_iface_set_down(hapd);
92 + } else if (os_strncmp(buf, "RELOAD ", 7) == 0) {
93 + hostapd_ctrl_iface_reload(hapd, buf + 7);
94 } else if (os_strcmp(buf, "STA-FIRST") == 0) {
95 reply_len = hostapd_ctrl_iface_sta_first(hapd, reply,