|
wpa_supplicant / hostapd 2.0
|
00001 00012 #ifndef MLME_H 00013 #define MLME_H 00014 00015 void mlme_authenticate_indication(struct hostapd_data *hapd, 00016 struct sta_info *sta); 00017 00018 void mlme_deauthenticate_indication(struct hostapd_data *hapd, 00019 struct sta_info *sta, u16 reason_code); 00020 00021 void mlme_associate_indication(struct hostapd_data *hapd, 00022 struct sta_info *sta); 00023 00024 void mlme_reassociate_indication(struct hostapd_data *hapd, 00025 struct sta_info *sta); 00026 00027 void mlme_disassociate_indication(struct hostapd_data *hapd, 00028 struct sta_info *sta, u16 reason_code); 00029 00030 void mlme_michaelmicfailure_indication(struct hostapd_data *hapd, 00031 const u8 *addr); 00032 00033 void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta); 00034 00035 #endif /* MLME_H */ 00036
1.7.3