ieee802_11.h 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. /*
  2. * hostapd / IEEE 802.11 Management
  3. * Copyright (c) 2002-2006, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2007-2008, Intel Corporation
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. *
  10. * Alternatively, this software may be distributed under the terms of BSD
  11. * license.
  12. *
  13. * See README and COPYING for more details.
  14. */
  15. #ifndef IEEE802_11_H
  16. #define IEEE802_11_H
  17. #include "ieee802_11_defs.h"
  18. #include "ieee802_11_common.h"
  19. struct hostapd_frame_info {
  20. u32 phytype;
  21. u32 channel;
  22. u32 datarate;
  23. u32 ssi_signal;
  24. unsigned int passive_scan:1;
  25. };
  26. struct hostapd_iface;
  27. struct hostapd_data;
  28. struct sta_info;
  29. void ieee802_11_send_deauth(struct hostapd_data *hapd, u8 *addr, u16 reason);
  30. void ieee802_11_mgmt(struct hostapd_data *hapd, u8 *buf, size_t len,
  31. u16 stype, struct hostapd_frame_info *fi);
  32. void ieee802_11_mgmt_cb(struct hostapd_data *hapd, u8 *buf, size_t len,
  33. u16 stype, int ok);
  34. void ieee802_11_print_ssid(char *buf, const u8 *ssid, u8 len);
  35. #ifdef NEED_MLME
  36. void ieee80211_michael_mic_failure(struct hostapd_data *hapd, const u8 *addr,
  37. int local);
  38. int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf, size_t buflen);
  39. int ieee802_11_get_mib_sta(struct hostapd_data *hapd, struct sta_info *sta,
  40. char *buf, size_t buflen);
  41. #else /* NEED_MLME */
  42. static inline void ieee80211_michael_mic_failure(struct hostapd_data *hapd,
  43. const u8 *addr, int local)
  44. {
  45. }
  46. static inline int ieee802_11_get_mib(struct hostapd_data *hapd, char *buf,
  47. size_t buflen)
  48. {
  49. return 0;
  50. }
  51. static inline int ieee802_11_get_mib_sta(struct hostapd_data *hapd,
  52. struct sta_info *sta,
  53. char *buf, size_t buflen)
  54. {
  55. return 0;
  56. }
  57. #endif /* NEED_MLME */
  58. u16 hostapd_own_capab_info(struct hostapd_data *hapd, struct sta_info *sta,
  59. int probe);
  60. u8 * hostapd_eid_supp_rates(struct hostapd_data *hapd, u8 *eid);
  61. u8 * hostapd_eid_ext_supp_rates(struct hostapd_data *hapd, u8 *eid);
  62. u8 * hostapd_eid_ht_capabilities_info(struct hostapd_data *hapd, u8 *eid);
  63. u8 * hostapd_eid_ht_operation(struct hostapd_data *hapd, u8 *eid);
  64. int hostapd_ht_operation_update(struct hostapd_iface *iface);
  65. void ieee802_11_send_sa_query_req(struct hostapd_data *hapd,
  66. const u8 *addr, const u8 *trans_id);
  67. #endif /* IEEE802_11_H */