3 * Copyright (c) 2009-2010, Jouni Malinen <j@w1.fi>
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.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
20 #define WPA_BSS_QUAL_INVALID BIT(0)
21 #define WPA_BSS_NOISE_INVALID BIT(1)
22 #define WPA_BSS_LEVEL_INVALID BIT(2)
23 #define WPA_BSS_LEVEL_DBM BIT(3)
24 #define WPA_BSS_AUTHENTICATED BIT(4)
25 #define WPA_BSS_ASSOCIATED BIT(5)
28 * struct wpa_bss - BSS table
29 * @list: List entry for struct wpa_supplicant::bss
30 * @list_id: List entry for struct wpa_supplicant::bss_id
31 * @id: Unique identifier for this BSS entry
32 * @scan_miss_count: Number of counts without seeing this BSS
33 * @flags: information flags about the BSS/IBSS (WPA_BSS_*)
34 * @last_update_idx: Index of the last scan update
36 * @freq: frequency of the channel in MHz (e.g., 2412 = channel 1)
37 * @beacon_int: beacon interval in TUs (host byte order)
38 * @caps: capability information field in host byte order
39 * @qual: signal quality
41 * @level: signal level
42 * @tsf: Timestamp of last Beacon/Probe Response frame
43 * @last_update: Time of the last update (i.e., Beacon or Probe Response RX)
44 * @ie_len: length of the following IE field in octets
46 * This structure is used to store information about neighboring BSSes in
47 * generic format. It is mainly updated based on scan results from the driver.
51 struct dl_list list_id
;
53 unsigned int scan_miss_count
;
54 unsigned int last_update_idx
;
66 struct os_time last_update
;
68 /* followed by ie_len octets of IEs */
71 void wpa_bss_update_start(struct wpa_supplicant
*wpa_s
);
72 void wpa_bss_update_scan_res(struct wpa_supplicant
*wpa_s
,
73 struct wpa_scan_res
*res
);
74 void wpa_bss_update_end(struct wpa_supplicant
*wpa_s
, struct scan_info
*info
,
76 int wpa_bss_init(struct wpa_supplicant
*wpa_s
);
77 void wpa_bss_deinit(struct wpa_supplicant
*wpa_s
);
78 struct wpa_bss
* wpa_bss_get(struct wpa_supplicant
*wpa_s
, const u8
*bssid
,
79 const u8
*ssid
, size_t ssid_len
);
80 struct wpa_bss
* wpa_bss_get_bssid(struct wpa_supplicant
*wpa_s
,
82 struct wpa_bss
* wpa_bss_get_id(struct wpa_supplicant
*wpa_s
, unsigned int id
);
83 const u8
* wpa_bss_get_ie(const struct wpa_bss
*bss
, u8 ie
);
84 const u8
* wpa_bss_get_vendor_ie(const struct wpa_bss
*bss
, u32 vendor_type
);
85 struct wpabuf
* wpa_bss_get_vendor_ie_multi(const struct wpa_bss
*bss
,
87 int wpa_bss_get_max_rate(const struct wpa_bss
*bss
);