12345678910111213141516171819202122232425262728293031323334353637383940 |
- #ifndef MLME_H
- #define MLME_H
- void mlme_authenticate_indication(struct hostapd_data *hapd,
- struct sta_info *sta);
- void mlme_deauthenticate_indication(struct hostapd_data *hapd,
- struct sta_info *sta, u16 reason_code);
- void mlme_associate_indication(struct hostapd_data *hapd,
- struct sta_info *sta);
- void mlme_reassociate_indication(struct hostapd_data *hapd,
- struct sta_info *sta);
- void mlme_disassociate_indication(struct hostapd_data *hapd,
- struct sta_info *sta, u16 reason_code);
- void mlme_michaelmicfailure_indication(struct hostapd_data *hapd,
- const u8 *addr);
- void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta);
- #endif /* MLME_H */
|