00001 00018 #ifndef MLME_H 00019 #define MLME_H 00020 00021 void mlme_authenticate_indication(struct hostapd_data *hapd, 00022 struct sta_info *sta); 00023 00024 void mlme_deauthenticate_indication(struct hostapd_data *hapd, 00025 struct sta_info *sta, u16 reason_code); 00026 00027 void mlme_associate_indication(struct hostapd_data *hapd, 00028 struct sta_info *sta); 00029 00030 void mlme_reassociate_indication(struct hostapd_data *hapd, 00031 struct sta_info *sta); 00032 00033 void mlme_disassociate_indication(struct hostapd_data *hapd, 00034 struct sta_info *sta, u16 reason_code); 00035 00036 void mlme_michaelmicfailure_indication(struct hostapd_data *hapd, 00037 const u8 *addr); 00038 00039 void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta); 00040 00041 #endif /* MLME_H */ 00042