17 #include <sys/ioctl.h>
23 #define IWINFO_BUFSIZE 24 * 1024
24 #define IWINFO_ESSID_MAX_SIZE 32
26 #define IWINFO_80211_A (1 << 0)
27 #define IWINFO_80211_B (1 << 1)
28 #define IWINFO_80211_G (1 << 2)
29 #define IWINFO_80211_N (1 << 3)
31 #define IWINFO_CIPHER_NONE (1 << 0)
32 #define IWINFO_CIPHER_WEP40 (1 << 1)
33 #define IWINFO_CIPHER_TKIP (1 << 2)
34 #define IWINFO_CIPHER_WRAP (1 << 3)
35 #define IWINFO_CIPHER_CCMP (1 << 4)
36 #define IWINFO_CIPHER_WEP104 (1 << 5)
37 #define IWINFO_CIPHER_AESOCB (1 << 6)
38 #define IWINFO_CIPHER_CKIP (1 << 7)
40 #define IWINFO_KMGMT_NONE (1 << 0)
41 #define IWINFO_KMGMT_8021x (1 << 1)
42 #define IWINFO_KMGMT_PSK (1 << 2)
44 #define IWINFO_AUTH_OPEN (1 << 0)
45 #define IWINFO_AUTH_SHARED (1 << 1)
47 extern const char *IWINFO_CIPHER_NAMES
[];
48 extern const char *IWINFO_KMGMT_NAMES
[];
49 extern const char *IWINFO_AUTH_NAMES
[];
52 struct iwinfo_assoclist_entry
{
58 struct iwinfo_txpwrlist_entry
{
63 struct iwinfo_freqlist_entry
{
69 struct iwinfo_crypto_entry
{
72 uint8_t group_ciphers
;
78 struct iwinfo_scanlist_entry
{
80 uint8_t ssid
[IWINFO_ESSID_MAX_SIZE
+1];
86 struct iwinfo_crypto_entry crypto
;
89 struct iwinfo_country_entry
{
94 struct iwinfo_iso3166_label
{
99 struct iwinfo_hardware_id
{
102 uint16_t subsystem_vendor_id
;
103 uint16_t subsystem_device_id
;
106 struct iwinfo_hardware_entry
{
107 const char *vendor_name
;
108 const char *device_name
;
111 uint16_t subsystem_vendor_id
;
112 uint16_t subsystem_device_id
;
113 int16_t txpower_offset
;
114 int16_t frequency_offset
;
117 extern const struct iwinfo_iso3166_label IWINFO_ISO3166_NAMES
[];
118 extern const struct iwinfo_hardware_entry IWINFO_HARDWARE_ENTRIES
[];
122 int (*channel
)(const char *, int *);
123 int (*frequency
)(const char *, int *);
124 int (*frequency_offset
)(const char *, int *);
125 int (*txpower
)(const char *, int *);
126 int (*txpower_offset
)(const char *, int *);
127 int (*bitrate
)(const char *, int *);
128 int (*signal
)(const char *, int *);
129 int (*noise
)(const char *, int *);
130 int (*quality
)(const char *, int *);
131 int (*quality_max
)(const char *, int *);
132 int (*mbssid_support
)(const char *, int *);
133 int (*hwmodelist
)(const char *, int *);
134 int (*mode
)(const char *, char *);
135 int (*ssid
)(const char *, char *);
136 int (*bssid
)(const char *, char *);
137 int (*country
)(const char *, char *);
138 int (*hardware_id
)(const char *, char *);
139 int (*hardware_name
)(const char *, char *);
140 int (*encryption
)(const char *, char *);
141 int (*assoclist
)(const char *, char *, int *);
142 int (*txpwrlist
)(const char *, char *, int *);
143 int (*scanlist
)(const char *, char *, int *);
144 int (*freqlist
)(const char *, char *, int *);
145 int (*countrylist
)(const char *, char *, int *);
149 const char * iwinfo_type(const char *ifname
);
150 const struct iwinfo_ops
* iwinfo_backend(const char *ifname
);
151 void iwinfo_finish(void);
153 #include "iwinfo/wext.h"
156 #include "iwinfo/wl.h"
160 #include "iwinfo/madwifi.h"
164 #include "iwinfo/nl80211.h"