/external/wpa_supplicant_8/src/ap/ |
D | wpa_auth_ft.c | 27 const u8 *current_ap, const u8 *sta_addr, 54 wpa_ft_add_sta(struct wpa_authenticator *wpa_auth, const u8 *sta_addr) in wpa_ft_add_sta() argument 58 return wpa_auth->cb.add_sta(wpa_auth->cb.ctx, sta_addr); in wpa_ft_add_sta() 63 const u8 *sta_addr, in wpa_ft_add_tspec() argument 70 return wpa_auth->cb.add_tspec(wpa_auth->cb.ctx, sta_addr, tspec_ie, in wpa_ft_add_tspec() 1141 const u8 *sta_addr, *target_ap; in wpa_ft_action_rx() local 1162 sta_addr = data + 2; in wpa_ft_action_rx() 1169 MAC2STR(sta_addr), MAC2STR(target_ap), action); in wpa_ft_action_rx() 1171 if (os_memcmp(sta_addr, sm->addr, ETH_ALEN) != 0) { in wpa_ft_action_rx() 1174 MAC2STR(sm->addr), MAC2STR(sta_addr)); in wpa_ft_action_rx() [all …]
|
D | wpa_auth.h | 210 struct wpa_state_machine * (*add_sta)(void *ctx, const u8 *sta_addr); 213 int (*add_tspec)(void *ctx, const u8 *sta_addr, u8 *tspec_ie, 276 const u8 *pmk, size_t len, const u8 *sta_addr, 280 const u8 *sta_addr);
|
D | wpa_auth_glue.c | 478 hostapd_wpa_auth_add_sta(void *ctx, const u8 *sta_addr) in hostapd_wpa_auth_add_sta() argument 483 if (hostapd_add_sta_node(hapd, sta_addr, WLAN_AUTH_FT) < 0) in hostapd_wpa_auth_add_sta() 486 sta = ap_sta_add(hapd, sta_addr); in hostapd_wpa_auth_add_sta() 520 static int hostapd_wpa_auth_add_tspec(void *ctx, const u8 *sta_addr, in hostapd_wpa_auth_add_tspec() argument 524 return hostapd_add_tspec(hapd, sta_addr, tspec_ie, tspec_ielen); in hostapd_wpa_auth_add_tspec()
|
D | wpa_auth.c | 3067 const u8 *pmk, size_t len, const u8 *sta_addr, in wpa_auth_pmksa_add_preauth() argument 3075 sta_addr, session_timeout, eapol, in wpa_auth_pmksa_add_preauth() 3084 const u8 *sta_addr) in wpa_auth_pmksa_remove() argument 3090 pmksa = pmksa_cache_auth_get(wpa_auth->pmksa, sta_addr, NULL); in wpa_auth_pmksa_remove() 3093 MACSTR " based on request", MAC2STR(sta_addr)); in wpa_auth_pmksa_remove()
|
D | gas_serv.c | 120 const u8 *sta_addr) in gas_serv_free_dialogs() argument 125 sta = ap_get_sta(hapd, sta_addr); in gas_serv_free_dialogs()
|
D | hostapd.c | 608 if (attr->sta_addr) in hostapd_das_find_sta() 609 sta = ap_get_sta(hapd, attr->sta_addr); in hostapd_das_find_sta()
|
/external/wpa_supplicant_8/src/radius/ |
D | radius_das.c | 60 u8 sta_addr[ETH_ALEN]; in radius_das_disconnect() local 111 if (hwaddr_aton2(tmp, sta_addr) < 0) { in radius_das_disconnect() 117 attrs.sta_addr = sta_addr; in radius_das_disconnect()
|
D | radius_das.h | 28 const u8 *sta_addr; member
|
/external/wpa_supplicant_8/src/drivers/ |
D | driver_hostap.c | 342 memcpy(param.sta_addr, addr, ETH_ALEN); in hostap_sta_set_flags() 414 memset(param->sta_addr, 0xff, ETH_ALEN); in wpa_driver_hostap_set_key() 416 memcpy(param->sta_addr, addr, ETH_ALEN); in wpa_driver_hostap_set_key() 470 memset(param->sta_addr, 0xff, ETH_ALEN); in hostap_get_seqnum() 472 memcpy(param->sta_addr, addr, ETH_ALEN); in hostap_get_seqnum() 644 memcpy(param.sta_addr, params->addr, ETH_ALEN); in hostap_sta_add() 661 memcpy(param.sta_addr, addr, ETH_ALEN); in hostap_sta_remove() 677 memcpy(param.sta_addr, addr, ETH_ALEN); in hostap_get_inact_sec() 693 memcpy(param.sta_addr, addr, ETH_ALEN); in hostap_sta_clear_stats()
|
D | driver_hostap.h | 155 u8 sta_addr[ETH_ALEN]; member
|
/external/wpa_supplicant_8/src/common/ |
D | wpa_common.h | 338 int wpa_ft_mic(const u8 *kck, const u8 *sta_addr, const u8 *ap_addr, 353 const u8 *sta_addr, const u8 *bssid,
|
D | wpa_common.c | 139 int wpa_ft_mic(const u8 *kck, const u8 *sta_addr, const u8 *ap_addr, in wpa_ft_mic() argument 154 os_memcpy(pos, sta_addr, ETH_ALEN); in wpa_ft_mic() 848 const u8 *sta_addr, const u8 *bssid, in wpa_pmk_r1_to_ptk() argument 868 os_memcpy(pos, sta_addr, ETH_ALEN); in wpa_pmk_r1_to_ptk() 887 addr[5] = sta_addr; in wpa_pmk_r1_to_ptk()
|
D | ieee802_11_defs.h | 510 u8 sta_addr[ETH_ALEN]; member 516 u8 sta_addr[ETH_ALEN]; member
|
/external/wpa_supplicant_8/wpa_supplicant/ |
D | events.c | 2523 const u8 *sta_addr, *target_ap_addr; local 2533 sta_addr = data + 1; 2538 MAC2STR(sta_addr), MAC2STR(target_ap_addr), status); 2540 if (os_memcmp(sta_addr, wpa_s->own_addr, ETH_ALEN) != 0) { 2542 " in FT Action Response", MAC2STR(sta_addr));
|