|
@@ -2922,6 +2922,9 @@ static int hostapd_ctrl_iface_receive_process(struct hostapd_data *hapd,
|
|
|
} else if (os_strncmp(buf, "RESEND_GROUP_M1 ", 16) == 0) {
|
|
|
if (hostapd_ctrl_resend_group_m1(hapd, buf + 16) < 0)
|
|
|
reply_len = -1;
|
|
|
+ } else if (os_strcmp(buf, "REKEY_GTK") == 0) {
|
|
|
+ if (wpa_auth_rekey_gtk(hapd->wpa_auth) < 0)
|
|
|
+ reply_len = -1;
|
|
|
#endif /* CONFIG_TESTING_OPTIONS */
|
|
|
} else if (os_strncmp(buf, "CHAN_SWITCH ", 12) == 0) {
|
|
|
if (hostapd_ctrl_iface_chan_switch(hapd->iface, buf + 12))
|