ap_list.h 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. /*
  2. * hostapd / AP table
  3. * Copyright (c) 2002-2003, Jouni Malinen <j@w1.fi>
  4. * Copyright (c) 2003-2004, Instant802 Networks, Inc.
  5. * Copyright (c) 2006, Devicescape Software, Inc.
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License version 2 as
  9. * published by the Free Software Foundation.
  10. *
  11. * Alternatively, this software may be distributed under the terms of BSD
  12. * license.
  13. *
  14. * See README and COPYING for more details.
  15. */
  16. #ifndef AP_LIST_H
  17. #define AP_LIST_H
  18. struct ap_info {
  19. /* Note: next/prev pointers are updated whenever a new beacon is
  20. * received because these are used to find the least recently used
  21. * entries. iter_next/iter_prev are updated only when adding new BSSes
  22. * and when removing old ones. These should be used when iterating
  23. * through the table in a manner that allows beacons to be received
  24. * during the iteration. */
  25. struct ap_info *next; /* next entry in AP list */
  26. struct ap_info *prev; /* previous entry in AP list */
  27. struct ap_info *hnext; /* next entry in hash table list */
  28. struct ap_info *iter_next; /* next entry in AP iteration list */
  29. struct ap_info *iter_prev; /* previous entry in AP iteration list */
  30. u8 addr[6];
  31. u16 beacon_int;
  32. u16 capability;
  33. u8 supported_rates[WLAN_SUPP_RATES_MAX];
  34. u8 ssid[33];
  35. size_t ssid_len;
  36. int wpa;
  37. int erp; /* ERP Info or -1 if ERP info element not present */
  38. int channel;
  39. int datarate; /* in 100 kbps */
  40. int ssi_signal;
  41. int ht_support;
  42. unsigned int num_beacons; /* number of beacon frames received */
  43. time_t last_beacon;
  44. int already_seen; /* whether API call AP-NEW has already fetched
  45. * information about this AP */
  46. };
  47. struct ieee802_11_elems;
  48. struct hostapd_frame_info;
  49. struct ap_info * ap_get_ap(struct hostapd_iface *iface, const u8 *sta);
  50. int ap_ap_for_each(struct hostapd_iface *iface,
  51. int (*func)(struct ap_info *s, void *data), void *data);
  52. void ap_list_process_beacon(struct hostapd_iface *iface,
  53. const struct ieee80211_mgmt *mgmt,
  54. struct ieee802_11_elems *elems,
  55. struct hostapd_frame_info *fi);
  56. #ifdef NEED_AP_MLME
  57. int ap_list_init(struct hostapd_iface *iface);
  58. void ap_list_deinit(struct hostapd_iface *iface);
  59. #else /* NEED_AP_MLME */
  60. static inline int ap_list_init(struct hostapd_iface *iface)
  61. {
  62. return 0;
  63. }
  64. static inline void ap_list_deinit(struct hostapd_iface *iface)
  65. {
  66. }
  67. #endif /* NEED_AP_MLME */
  68. #endif /* AP_LIST_H */