Lines Matching full:mgmt

1644 	struct ieee80211_mgmt *mgmt;  in hostapd_action_rx()  local
1655 mgmt = (struct ieee80211_mgmt *) drv_mgmt->frame; in hostapd_action_rx()
1656 fc = le_to_host16(mgmt->frame_control); in hostapd_action_rx()
1660 action = (u8 *) &mgmt->u.action.u; in hostapd_action_rx()
1663 mgmt->u.action.category, *action, in hostapd_action_rx()
1664 MAC2STR(mgmt->sa), MAC2STR(mgmt->da), (int) plen); in hostapd_action_rx()
1666 sta = ap_get_sta(hapd, mgmt->sa); in hostapd_action_rx()
1672 if (mgmt->u.action.category == WLAN_ACTION_FT) { in hostapd_action_rx()
1673 wpa_ft_action_rx(sta->wpa_sm, (u8 *) &mgmt->u.action, plen); in hostapd_action_rx()
1677 if (mgmt->u.action.category == WLAN_ACTION_SA_QUERY) { in hostapd_action_rx()
1678 ieee802_11_sa_query_action(hapd, mgmt, drv_mgmt->frame_len); in hostapd_action_rx()
1682 if (mgmt->u.action.category == WLAN_ACTION_WNM) { in hostapd_action_rx()
1683 ieee802_11_rx_wnm_action_ap(hapd, mgmt, drv_mgmt->frame_len); in hostapd_action_rx()
1688 if (mgmt->u.action.category == WLAN_ACTION_FST && hapd->iface->fst) { in hostapd_action_rx()
1689 fst_rx_action(hapd->iface->fst, mgmt, drv_mgmt->frame_len); in hostapd_action_rx()
1695 mgmt->u.action.category == WLAN_ACTION_PUBLIC && in hostapd_action_rx()
1696 mgmt->u.action.u.vs_public_action.action == in hostapd_action_rx()
1698 WPA_GET_BE24(mgmt->u.action.u.vs_public_action.oui) == in hostapd_action_rx()
1700 mgmt->u.action.u.vs_public_action.variable[0] == in hostapd_action_rx()
1704 pos = mgmt->u.action.u.vs_public_action.oui; in hostapd_action_rx()
1706 hostapd_dpp_rx_action(hapd, mgmt->sa, pos, end - pos, in hostapd_action_rx()
1712 if (mgmt->u.action.category == WLAN_ACTION_PUBLIC && plen >= 5 && in hostapd_action_rx()
1713 mgmt->u.action.u.vs_public_action.action == in hostapd_action_rx()
1715 WPA_GET_BE24(mgmt->u.action.u.vs_public_action.oui) == in hostapd_action_rx()
1717 mgmt->u.action.u.vs_public_action.variable[0] == NAN_OUI_TYPE) { in hostapd_action_rx()
1720 pos = mgmt->u.action.u.vs_public_action.variable; in hostapd_action_rx()
1723 hostapd_nan_usd_rx_sdf(hapd, mgmt->sa, drv_mgmt->freq, in hostapd_action_rx()
1861 wpa_msg(hapd->msg_ctx, MSG_INFO, "MGMT-RX %s", hex); in hostapd_mgmt_rx()