/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | sta_info.h | 106 struct sta_info { struct 107 struct sta_info *next; /* next entry in sta list */ 108 struct sta_info *hnext; /* next entry in hash table list */ 294 void (*fils_pending_cb)(struct hostapd_data *hapd, struct sta_info *sta, 353 int (*cb)(struct hostapd_data *hapd, struct sta_info *sta, 356 struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta); 357 struct sta_info * ap_get_sta_p2p(struct hostapd_data *hapd, const u8 *addr); 358 void ap_sta_hash_add(struct hostapd_data *hapd, struct sta_info *sta); 359 void ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta); 360 void ap_sta_ip6addr_del(struct hostapd_data *hapd, struct sta_info *st [all...] |
H A D | ieee802_11.h | 14 struct sta_info; 30 int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, 40 struct sta_info *sta, in ieee802_11_get_mib_sta() 81 int hostapd_get_aid(struct hostapd_data *hapd, struct sta_info *sta); 82 u16 copy_sta_ht_capab(struct hostapd_data *hapd, struct sta_info *sta, 84 u16 copy_sta_vendor_vht(struct hostapd_data *hapd, struct sta_info *sta, 87 void update_ht_state(struct hostapd_data *hapd, struct sta_info *sta); 88 void ht40_intolerant_add(struct hostapd_iface *iface, struct sta_info *sta); 89 void ht40_intolerant_remove(struct hostapd_iface *iface, struct sta_info *sta); 90 u16 copy_sta_vht_capab(struct hostapd_data *hapd, struct sta_info *st [all...] |
H A D | ieee802_1x.h | 13 struct sta_info; 23 void ieee802_1x_new_station(struct hostapd_data *hapd, struct sta_info *sta); 24 void ieee802_1x_free_station(struct hostapd_data *hapd, struct sta_info *sta); 26 void ieee802_1x_abort_auth(struct hostapd_data *hapd, struct sta_info *sta); 28 struct sta_info *sta, int authorized); 29 void ieee802_1x_dump_state(FILE *f, const char *prefix, struct sta_info *sta); 33 int ieee802_1x_tx_status(struct hostapd_data *hapd, struct sta_info *sta, 35 int ieee802_1x_eapol_tx_status(struct hostapd_data *hapd, struct sta_info *sta, 49 int ieee802_1x_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, 55 int radius_sta_rate(struct hostapd_data *hapd, struct sta_info *st [all...] |
H A D | mbo_ap.h | 13 struct sta_info; 18 void mbo_ap_check_sta_assoc(struct hostapd_data *hapd, struct sta_info *sta, 20 int mbo_ap_get_info(struct sta_info *sta, char *buf, size_t buflen); 23 void mbo_ap_sta_free(struct sta_info *sta); 28 struct sta_info *sta, in mbo_ap_check_sta_assoc() 33 static inline int mbo_ap_get_info(struct sta_info *sta, char *buf, in mbo_ap_get_info() 45 static inline void mbo_ap_sta_free(struct sta_info *sta) in mbo_ap_sta_free()
|
H A D | accounting.h | 14 struct sta_info *sta) in accounting_sta_get_id() 20 struct sta_info *sta) in accounting_sta_start() 25 struct sta_info *sta) in accounting_sta_stop() 38 int accounting_sta_get_id(struct hostapd_data *hapd, struct sta_info *sta); 39 void accounting_sta_start(struct hostapd_data *hapd, struct sta_info *sta); 40 void accounting_sta_stop(struct hostapd_data *hapd, struct sta_info *sta);
|
H A D | ap_mlme.h | 15 struct sta_info *sta); 18 struct sta_info *sta, u16 reason_code); 21 struct sta_info *sta); 24 struct sta_info *sta); 27 struct sta_info *sta, u16 reason_code); 32 void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta);
|
H A D | preauth_auth.h | 16 void rsn_preauth_finished(struct hostapd_data *hapd, struct sta_info *sta, 18 void rsn_preauth_send(struct hostapd_data *hapd, struct sta_info *sta, 20 void rsn_preauth_free_station(struct hostapd_data *hapd, struct sta_info *sta); 34 struct sta_info *sta, in rsn_preauth_finished() 40 struct sta_info *sta, in rsn_preauth_send() 46 struct sta_info *sta) in rsn_preauth_free_station()
|
H A D | wpa_auth_kay.h | 15 struct sta_info *sta); 17 struct sta_info *sta); 21 struct sta_info *sta); 26 struct sta_info *sta) in ieee802_1x_alloc_kay_sm_hapd() 33 struct sta_info *sta) in ieee802_1x_notify_create_actor_hapd() 44 struct sta_info *sta) in ieee802_1x_create_preshared_mka_hapd()
|
H A D | wnm_ap.h | 12 struct sta_info; 17 struct sta_info *sta, int disassoc_timer); 19 struct sta_info *sta, const char *url, 21 int wnm_send_bss_tm_req(struct hostapd_data *hapd, struct sta_info *sta, 27 int wnm_send_coloc_intf_req(struct hostapd_data *hapd, struct sta_info *sta,
|
H A D | sta_info.c | 41 #include "sta_info.h" 56 struct sta_info *sta); 62 static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta); 66 int (*cb)(struct hostapd_data *hapd, struct sta_info *sta, in ap_for_each_sta() 70 struct sta_info *sta; in ap_for_each_sta() 81 struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta) in ap_get_sta() 83 struct sta_info *s; in ap_get_sta() 93 struct sta_info * ap_get_sta_p2p(struct hostapd_data *hapd, const u8 *addr) in ap_get_sta_p2p() 95 struct sta_info *sta; in ap_get_sta_p2p() 116 static void ap_sta_list_del(struct hostapd_data *hapd, struct sta_info *st [all...] |
H A D | ap_mlme.c | 17 #include "sta_info.h" 54 struct sta_info *sta) in mlme_authenticate_indication() 83 struct sta_info *sta, u16 reason_code) in mlme_deauthenticate_indication() 106 void mlme_associate_indication(struct hostapd_data *hapd, struct sta_info *sta) in mlme_associate_indication() 134 struct sta_info *sta) in mlme_reassociate_indication() 162 struct sta_info *sta, u16 reason_code) in mlme_disassociate_indication() 182 void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta) in mlme_deletekeys_request()
|
H A D | mbo_ap.c | 15 #include "sta_info.h" 19 void mbo_ap_sta_free(struct sta_info *sta) in mbo_ap_sta_free() 33 static void mbo_ap_parse_non_pref_chan(struct sta_info *sta, in mbo_ap_parse_non_pref_chan() 83 void mbo_ap_check_sta_assoc(struct hostapd_data *hapd, struct sta_info *sta, in mbo_ap_check_sta_assoc() 115 int mbo_ap_get_info(struct sta_info *sta, char *buf, size_t buflen) in mbo_ap_get_info() 168 static void mbo_ap_wnm_notif_req_cell_capa(struct sta_info *sta, in mbo_ap_wnm_notif_req_cell_capa() 180 static void mbo_ap_wnm_notif_req_elem(struct sta_info *sta, u8 type, in mbo_ap_wnm_notif_req_elem() 213 struct sta_info *sta; in mbo_ap_wnm_notification_req()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | sta_info.h | 65 struct sta_info { struct 66 struct sta_info *next; /* next entry in sta list */ 67 struct sta_info *hnext; /* next entry in hash table list */ 253 void (*fils_pending_cb)(struct hostapd_data *hapd, struct sta_info *sta, 306 int (*cb)(struct hostapd_data *hapd, struct sta_info *sta, 309 struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta); 310 struct sta_info * ap_get_sta_p2p(struct hostapd_data *hapd, const u8 *addr); 311 void ap_sta_hash_add(struct hostapd_data *hapd, struct sta_info *sta); 312 void ap_free_sta(struct hostapd_data *hapd, struct sta_info *sta); 313 void ap_sta_ip6addr_del(struct hostapd_data *hapd, struct sta_info *st [all...] |
H A D | ieee802_11.h | 14 struct sta_info; 31 int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, 41 struct sta_info *sta, in ieee802_11_get_mib_sta() 80 int hostapd_get_aid(struct hostapd_data *hapd, struct sta_info *sta); 81 u16 copy_sta_ht_capab(struct hostapd_data *hapd, struct sta_info *sta, 83 u16 copy_sta_vendor_vht(struct hostapd_data *hapd, struct sta_info *sta, 86 void update_ht_state(struct hostapd_data *hapd, struct sta_info *sta); 87 void ht40_intolerant_add(struct hostapd_iface *iface, struct sta_info *sta); 88 void ht40_intolerant_remove(struct hostapd_iface *iface, struct sta_info *sta); 89 u16 copy_sta_vht_capab(struct hostapd_data *hapd, struct sta_info *st [all...] |
H A D | ieee802_1x.h | 13 struct sta_info; 23 void ieee802_1x_new_station(struct hostapd_data *hapd, struct sta_info *sta); 24 void ieee802_1x_free_station(struct hostapd_data *hapd, struct sta_info *sta); 26 void ieee802_1x_abort_auth(struct hostapd_data *hapd, struct sta_info *sta); 28 struct sta_info *sta, int authorized); 29 void ieee802_1x_dump_state(FILE *f, const char *prefix, struct sta_info *sta); 33 int ieee802_1x_tx_status(struct hostapd_data *hapd, struct sta_info *sta, 35 int ieee802_1x_eapol_tx_status(struct hostapd_data *hapd, struct sta_info *sta, 50 int ieee802_1x_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta, 56 int radius_sta_rate(struct hostapd_data *hapd, struct sta_info *st [all...] |
H A D | mbo_ap.h | 13 struct sta_info; 18 void mbo_ap_check_sta_assoc(struct hostapd_data *hapd, struct sta_info *sta, 20 int mbo_ap_get_info(struct sta_info *sta, char *buf, size_t buflen); 23 void mbo_ap_sta_free(struct sta_info *sta); 28 struct sta_info *sta, in mbo_ap_check_sta_assoc() 33 static inline int mbo_ap_get_info(struct sta_info *sta, char *buf, in mbo_ap_get_info() 45 static inline void mbo_ap_sta_free(struct sta_info *sta) in mbo_ap_sta_free()
|
H A D | sta_info.c | 39 #include "sta_info.h" 44 struct sta_info *sta); 52 static int ap_sta_remove(struct hostapd_data *hapd, struct sta_info *sta); 56 int (*cb)(struct hostapd_data *hapd, struct sta_info *sta, in ap_for_each_sta() 60 struct sta_info *sta; in ap_for_each_sta() 71 struct sta_info * ap_get_sta(struct hostapd_data *hapd, const u8 *sta) in ap_get_sta() 73 struct sta_info *s; in ap_get_sta() 83 struct sta_info * ap_get_sta_p2p(struct hostapd_data *hapd, const u8 *addr) in ap_get_sta_p2p() 85 struct sta_info *sta; in ap_get_sta_p2p() 106 static void ap_sta_list_del(struct hostapd_data *hapd, struct sta_info *st [all...] |
H A D | accounting.h | 14 struct sta_info *sta) in accounting_sta_get_id() 20 struct sta_info *sta) in accounting_sta_start() 25 struct sta_info *sta) in accounting_sta_stop() 38 int accounting_sta_get_id(struct hostapd_data *hapd, struct sta_info *sta); 39 void accounting_sta_start(struct hostapd_data *hapd, struct sta_info *sta); 40 void accounting_sta_stop(struct hostapd_data *hapd, struct sta_info *sta);
|
H A D | ap_mlme.h | 15 struct sta_info *sta); 18 struct sta_info *sta, u16 reason_code); 21 struct sta_info *sta); 24 struct sta_info *sta); 27 struct sta_info *sta, u16 reason_code); 32 void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta);
|
H A D | preauth_auth.h | 16 void rsn_preauth_finished(struct hostapd_data *hapd, struct sta_info *sta, 18 void rsn_preauth_send(struct hostapd_data *hapd, struct sta_info *sta, 20 void rsn_preauth_free_station(struct hostapd_data *hapd, struct sta_info *sta); 34 struct sta_info *sta, in rsn_preauth_finished() 40 struct sta_info *sta, in rsn_preauth_send() 46 struct sta_info *sta) in rsn_preauth_free_station()
|
H A D | wpa_auth_kay.h | 15 struct sta_info *sta); 17 struct sta_info *sta); 21 struct sta_info *sta); 26 struct sta_info *sta) in ieee802_1x_alloc_kay_sm_hapd() 33 struct sta_info *sta) in ieee802_1x_notify_create_actor_hapd() 44 struct sta_info *sta) in ieee802_1x_create_preshared_mka_hapd()
|
H A D | wnm_ap.h | 12 struct sta_info; 17 struct sta_info *sta, int disassoc_timer); 19 struct sta_info *sta, const char *url, 21 int wnm_send_bss_tm_req(struct hostapd_data *hapd, struct sta_info *sta, 27 int wnm_send_coloc_intf_req(struct hostapd_data *hapd, struct sta_info *sta,
|
H A D | ap_mlme.c | 17 #include "sta_info.h" 54 struct sta_info *sta) in mlme_authenticate_indication() 83 struct sta_info *sta, u16 reason_code) in mlme_deauthenticate_indication() 106 void mlme_associate_indication(struct hostapd_data *hapd, struct sta_info *sta) in mlme_associate_indication() 134 struct sta_info *sta) in mlme_reassociate_indication() 162 struct sta_info *sta, u16 reason_code) in mlme_disassociate_indication() 182 void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta) in mlme_deletekeys_request()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | mesh_rsn.h | 32 int mesh_rsn_auth_sae_sta(struct wpa_supplicant *wpa_s, struct sta_info *sta); 33 int mesh_rsn_derive_mtk(struct wpa_supplicant *wpa_s, struct sta_info *sta); 34 void mesh_rsn_get_pmkid(struct mesh_rsn *rsn, struct sta_info *sta, u8 *pmkid); 36 struct sta_info *sta); 37 int mesh_rsn_protect_frame(struct mesh_rsn *rsn, struct sta_info *sta, 39 int mesh_rsn_process_ampe(struct wpa_supplicant *wpa_s, struct sta_info *sta,
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | mesh_rsn.h | 32 int mesh_rsn_auth_sae_sta(struct wpa_supplicant *wpa_s, struct sta_info *sta); 33 int mesh_rsn_derive_mtk(struct wpa_supplicant *wpa_s, struct sta_info *sta); 34 void mesh_rsn_get_pmkid(struct mesh_rsn *rsn, struct sta_info *sta, u8 *pmkid); 36 struct sta_info *sta); 37 int mesh_rsn_protect_frame(struct mesh_rsn *rsn, struct sta_info *sta, 39 int mesh_rsn_process_ampe(struct wpa_supplicant *wpa_s, struct sta_info *sta,
|