|
@@ -666,9 +666,8 @@ static int hostapd_ctrl_iface_disassoc_imminent(struct hostapd_data *hapd,
|
|
|
const char *cmd)
|
|
|
{
|
|
|
u8 addr[ETH_ALEN];
|
|
|
- u8 buf[1000], *pos;
|
|
|
- struct ieee80211_mgmt *mgmt;
|
|
|
int disassoc_timer;
|
|
|
+ struct sta_info *sta;
|
|
|
|
|
|
if (hwaddr_aton(cmd, addr))
|
|
|
return -1;
|
|
@@ -676,31 +675,15 @@ static int hostapd_ctrl_iface_disassoc_imminent(struct hostapd_data *hapd,
|
|
|
return -1;
|
|
|
disassoc_timer = atoi(cmd + 17);
|
|
|
|
|
|
- os_memset(buf, 0, sizeof(buf));
|
|
|
- mgmt = (struct ieee80211_mgmt *) buf;
|
|
|
- mgmt->frame_control = IEEE80211_FC(WLAN_FC_TYPE_MGMT,
|
|
|
- WLAN_FC_STYPE_ACTION);
|
|
|
- os_memcpy(mgmt->da, addr, ETH_ALEN);
|
|
|
- os_memcpy(mgmt->sa, hapd->own_addr, ETH_ALEN);
|
|
|
- os_memcpy(mgmt->bssid, hapd->own_addr, ETH_ALEN);
|
|
|
- mgmt->u.action.category = WLAN_ACTION_WNM;
|
|
|
- mgmt->u.action.u.bss_tm_req.action = WNM_BSS_TRANS_MGMT_REQ;
|
|
|
- mgmt->u.action.u.bss_tm_req.dialog_token = 1;
|
|
|
- mgmt->u.action.u.bss_tm_req.req_mode =
|
|
|
- WNM_BSS_TM_REQ_DISASSOC_IMMINENT;
|
|
|
- mgmt->u.action.u.bss_tm_req.disassoc_timer =
|
|
|
- host_to_le16(disassoc_timer);
|
|
|
- mgmt->u.action.u.bss_tm_req.validity_interval = 0;
|
|
|
-
|
|
|
- pos = mgmt->u.action.u.bss_tm_req.variable;
|
|
|
-
|
|
|
- if (hostapd_drv_send_mlme(hapd, buf, pos - buf, 0) < 0) {
|
|
|
- wpa_printf(MSG_DEBUG, "Failed to send BSS Transition "
|
|
|
- "Management Request frame");
|
|
|
+ sta = ap_get_sta(hapd, addr);
|
|
|
+ if (sta == NULL) {
|
|
|
+ wpa_printf(MSG_DEBUG, "Station " MACSTR
|
|
|
+ " not found for disassociation imminent message",
|
|
|
+ MAC2STR(addr));
|
|
|
return -1;
|
|
|
}
|
|
|
|
|
|
- return 0;
|
|
|
+ return wnm_send_disassoc_imminent(hapd, sta, disassoc_timer);
|
|
|
}
|
|
|
|
|
|
|