ieee802_11.h 2.3 KB

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