Lines Matching +full:data +full:- +full:addr
3 * Copyright 2003-2006, Jouni Malinen <j@w1.fi>
4 * Copyright 2003-2004, Instant802 Networks, Inc.
5 * Copyright 2005-2006, Devicescape Software, Inc.
40 * mlme_authenticate_indication - Report the establishment of an authentication
42 * @hapd: BSS data
43 * @sta: peer STA data
50 * PeerSTAAddress = sta->addr
51 * AuthenticationType = sta->auth_alg (WLAN_AUTH_OPEN / WLAN_AUTH_SHARED_KEY)
56 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
58 "MLME-AUTHENTICATE.indication(" MACSTR ", %s)",
59 MAC2STR(sta->addr), mlme_auth_alg_str(sta->auth_alg));
60 if (sta->auth_alg != WLAN_AUTH_FT &&
61 sta->auth_alg != WLAN_AUTH_FILS_SK &&
62 sta->auth_alg != WLAN_AUTH_FILS_SK_PFS &&
63 sta->auth_alg != WLAN_AUTH_FILS_PK &&
64 !(sta->flags & WLAN_STA_MFP))
71 * mlme_deauthenticate_indication - Report the invalidation of an
73 * @hapd: BSS data
74 * @sta: Peer STA data
80 * PeerSTAAddress = sta->addr
85 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
87 "MLME-DEAUTHENTICATE.indication(" MACSTR ", %d)",
88 MAC2STR(sta->addr), reason_code);
89 if (!hapd->iface->driver_ap_teardown)
95 * mlme_associate_indication - Report the establishment of an association with
97 * @hapd: BSS data
98 * @sta: peer STA data
104 * PeerSTAAddress = sta->addr
108 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
110 "MLME-ASSOCIATE.indication(" MACSTR ")",
111 MAC2STR(sta->addr));
112 if (sta->auth_alg != WLAN_AUTH_FT &&
113 sta->auth_alg != WLAN_AUTH_FILS_SK &&
114 sta->auth_alg != WLAN_AUTH_FILS_SK_PFS &&
115 sta->auth_alg != WLAN_AUTH_FILS_PK)
122 * mlme_reassociate_indication - Report the establishment of an reassociation
124 * @hapd: BSS data
125 * @sta: peer STA data
131 * PeerSTAAddress = sta->addr
136 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
138 "MLME-REASSOCIATE.indication(" MACSTR ")",
139 MAC2STR(sta->addr));
140 if (sta->auth_alg != WLAN_AUTH_FT &&
141 sta->auth_alg != WLAN_AUTH_FILS_SK &&
142 sta->auth_alg != WLAN_AUTH_FILS_SK_PFS &&
143 sta->auth_alg != WLAN_AUTH_FILS_PK)
150 * mlme_disassociate_indication - Report disassociation with a specific peer
152 * @hapd: BSS data
153 * @sta: Peer STA data
159 * PeerSTAAddress = sta->addr
164 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
166 "MLME-DISASSOCIATE.indication(" MACSTR ", %d)",
167 MAC2STR(sta->addr), reason_code);
173 const u8 *addr)
175 hostapd_logger(hapd, addr, HOSTAPD_MODULE_MLME,
177 "MLME-MichaelMICFailure.indication(" MACSTR ")",
178 MAC2STR(addr));
184 hostapd_logger(hapd, sta->addr, HOSTAPD_MODULE_MLME,
186 "MLME-DELETEKEYS.request(" MACSTR ")",
187 MAC2STR(sta->addr));
189 if (sta->wpa_sm)
190 wpa_remove_ptk(sta->wpa_sm);