ap_mlme.h 1007 B

12345678910111213141516171819202122232425262728293031323334
  1. /*
  2. * hostapd / IEEE 802.11 MLME
  3. * Copyright 2003, Jouni Malinen <j@w1.fi>
  4. * Copyright 2003-2004, Instant802 Networks, Inc.
  5. * Copyright 2005-2006, Devicescape Software, Inc.
  6. *
  7. * This software may be distributed under the terms of the BSD license.
  8. * See README for more details.
  9. */
  10. #ifndef MLME_H
  11. #define MLME_H
  12. void mlme_authenticate_indication(struct hostapd_data *hapd,
  13. struct sta_info *sta);
  14. void mlme_deauthenticate_indication(struct hostapd_data *hapd,
  15. struct sta_info *sta, u16 reason_code);
  16. void mlme_associate_indication(struct hostapd_data *hapd,
  17. struct sta_info *sta);
  18. void mlme_reassociate_indication(struct hostapd_data *hapd,
  19. struct sta_info *sta);
  20. void mlme_disassociate_indication(struct hostapd_data *hapd,
  21. struct sta_info *sta, u16 reason_code);
  22. void mlme_michaelmicfailure_indication(struct hostapd_data *hapd,
  23. const u8 *addr);
  24. void mlme_deletekeys_request(struct hostapd_data *hapd, struct sta_info *sta);
  25. #endif /* MLME_H */