OpenWrt – Diff between revs 2 and 3

Subversion Repositories:
Rev:
Show entire fileIgnore whitespace
Rev 2 Rev 3
Line 76... Line 76...
76 + iface->interfaces->config_read_cb = config_read_cb; 76 + iface->interfaces->config_read_cb = config_read_cb;
77 +} 77 +}
Line 78... Line 78...
78 78
79 #ifdef CONFIG_IEEE80211W 79 #ifdef CONFIG_IEEE80211W
80 #ifdef NEED_AP_MLME 80 #ifdef NEED_AP_MLME
81 @@ -3084,6 +3141,8 @@ static int hostapd_ctrl_iface_receive_pr 81 @@ -3026,6 +3083,8 @@ static int hostapd_ctrl_iface_receive_pr
82 } else if (os_strncmp(buf, "VENDOR ", 7) == 0) { 82 } else if (os_strncmp(buf, "VENDOR ", 7) == 0) {
83 reply_len = hostapd_ctrl_iface_vendor(hapd, buf + 7, reply, 83 reply_len = hostapd_ctrl_iface_vendor(hapd, buf + 7, reply,
84 reply_size); 84 reply_size);
85 + } else if (os_strncmp(buf, "UPDATE ", 7) == 0) { 85 + } else if (os_strncmp(buf, "UPDATE ", 7) == 0) {
86 + hostapd_ctrl_iface_update(hapd, buf + 7); 86 + hostapd_ctrl_iface_update(hapd, buf + 7);
87 } else if (os_strcmp(buf, "ERP_FLUSH") == 0) { 87 } else if (os_strcmp(buf, "ERP_FLUSH") == 0) {
88 ieee802_1x_erp_flush(hapd); 88 ieee802_1x_erp_flush(hapd);
89 #ifdef RADIUS_SERVER 89 #ifdef RADIUS_SERVER
90 --- a/src/ap/ctrl_iface_ap.c 90 --- a/src/ap/ctrl_iface_ap.c
91 +++ b/src/ap/ctrl_iface_ap.c 91 +++ b/src/ap/ctrl_iface_ap.c
Line 92... Line 92...
92 @@ -864,7 +864,13 @@ int hostapd_parse_csa_settings(const cha 92 @@ -857,7 +857,13 @@ int hostapd_parse_csa_settings(const cha
93 93
94 int hostapd_ctrl_iface_stop_ap(struct hostapd_data *hapd) 94 int hostapd_ctrl_iface_stop_ap(struct hostapd_data *hapd)
95 { 95 {