/external/wpa_supplicant_8/src/rsn_supp/ |
wpa.h | 49 int (*send_ft_action)(void *ctx, u8 action, const u8 *target_ap, 51 int (*mark_authenticated)(void *ctx, const u8 *target_ap); 315 int ft_action, const u8 *target_ap, 320 int wpa_ft_start_over_ds(struct wpa_sm *sm, const u8 *target_ap, 339 int ft_action, const u8 *target_ap)
|
wpa_i.h | 119 u8 target_ap[ETH_ALEN]; /* over-the-DS target AP */ member in struct:wpa_sm 227 const u8 *target_ap, 231 return sm->ctx->send_ft_action(sm->ctx->ctx, action, target_ap, 237 const u8 *target_ap) 240 return sm->ctx->mark_authenticated(sm->ctx->ctx, target_ap);
|
wpa_ft.c | 137 * @target_ap: Target AP address 147 const u8 *kck, const u8 *target_ap, 299 if (wpa_ft_mic(kck, sm->own_addr, target_ap, 5, 373 int ft_action, const u8 *target_ap, 395 if (os_memcmp(target_ap, sm->target_ap, ETH_ALEN) != 0) { 477 bssid = target_ap; 517 os_memcpy(sm->bssid, target_ap, ETH_ALEN); 804 * @target_ap: Target AP Address 808 int wpa_ft_start_over_ds(struct wpa_sm *sm, const u8 *target_ap, [all...] |
/external/wpa_supplicant_8/wpa_supplicant/ |
wpas_glue.c | 480 const u8 *target_ap, 484 return wpa_drv_send_ft_action(wpa_s, action, target_ap, ies, ies_len); 488 static int wpa_supplicant_mark_authenticated(void *ctx, const u8 *target_ap) 494 bss = wpa_bss_get_bssid(wpa_s, target_ap); 499 params.bssid = target_ap;
|
driver_i.h | 268 u8 action, const u8 *target_ap, 273 target_ap, ies, ies_len);
|
wpa_priv.c | 811 os_memcpy(pos, data->ft_ies.target_ap, ETH_ALEN);
|
ctrl_iface.c | 593 u8 target_ap[ETH_ALEN]; local 597 if (hwaddr_aton(addr, target_ap)) { 603 wpa_printf(MSG_DEBUG, "CTRL_IFACE FT_DS " MACSTR, MAC2STR(target_ap)); 605 bss = wpa_bss_get_bssid(wpa_s, target_ap); 611 return wpa_ft_start_over_ds(wpa_s->wpa, target_ap, mdie); [all...] |
sme.c | 616 os_memcpy(edata.ft_ies.target_ap, data->auth.peer, ETH_ALEN); [all...] |
events.c | [all...] |
/external/wpa_supplicant_8/src/ap/ |
wpa_auth_ft.c | 1116 const u8 *sta_addr, *target_ap; local 1138 target_ap = data + 8; 1144 MAC2STR(sta_addr), MAC2STR(target_ap), action); 1158 if ((target_ap[0] & 0x01) || 1159 os_memcmp(target_ap, sm->wpa_auth->addr, ETH_ALEN) == 0) { 1175 wpa_ft_rrb_send(sm->wpa_auth, target_ap, (u8 *) frame, [all...] |
/external/wpa_supplicant_8/src/drivers/ |
driver.h | 3347 u8 target_ap[ETH_ALEN]; member in struct:wpa_event_data::ft_ies [all...] |
driver_privsep.c | 409 os_memcpy(data.ft_ies.target_ap, buf + sizeof(int), ETH_ALEN);
|
driver_nl80211.c | [all...] |