Merge git://git.infradead.org/users/willy/linux-nvme
[deliverable/linux.git] / drivers / net / wireless / ipw2x00 / libipw.h
CommitLineData
b453872c
JG
1/*
2 * Merged with mainline ieee80211.h in Aug 2004. Original ieee802_11
3 * remains copyright by the original authors
4 *
5 * Portions of the merged code are based on Host AP (software wireless
6 * LAN access point) driver for Intersil Prism2/2.5/3.
7 *
8 * Copyright (c) 2001-2002, SSH Communications Security Corp and Jouni Malinen
85d32e7b
JM
9 * <j@w1.fi>
10 * Copyright (c) 2002-2003, Jouni Malinen <j@w1.fi>
b453872c
JG
11 *
12 * Adaption to a generic IEEE 802.11 stack by James Ketrenos
13 * <jketreno@linux.intel.com>
ebeaddcc 14 * Copyright (c) 2004-2005, Intel Corporation
b453872c
JG
15 *
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License version 2 as
18 * published by the Free Software Foundation. See README and COPYING for
19 * more details.
31696160
JK
20 *
21 * API Version History
22 * 1.0.x -- Initial version
b0a4e7d8 23 * 1.1.x -- Added radiotap, QoS, TIM, libipw_geo APIs,
31696160 24 * various structure changes, and crypto API init method
b453872c 25 */
b0a4e7d8
JL
26#ifndef LIBIPW_H
27#define LIBIPW_H
74079fdc
JK
28#include <linux/if_ether.h> /* ETH_ALEN */
29#include <linux/kernel.h> /* ARRAY_SIZE */
b7721ff9 30#include <linux/wireless.h>
72118015 31#include <linux/ieee80211.h>
b453872c 32
274bfb8d 33#include <net/lib80211.h>
a3caa99e 34#include <net/cfg80211.h>
274bfb8d 35
b0a4e7d8 36#define LIBIPW_VERSION "git-1.1.13"
31696160 37
b0a4e7d8 38#define LIBIPW_DATA_LEN 2304
b453872c
JG
39/* Maximum size for the MA-UNITDATA primitive, 802.11 standard section
40 6.2.1.1.2.
41
42 The figure in section 7.1.2 suggests a body size of up to 2312
43 bytes is allowed, which is a bit confusing, I suspect this
44 represents the 2304 bytes of real data, plus a possible 8 bytes of
45 WEP IV and ICV. (this interpretation suggested by Ramiro Barreiro) */
46
b0a4e7d8
JL
47#define LIBIPW_1ADDR_LEN 10
48#define LIBIPW_2ADDR_LEN 16
49#define LIBIPW_3ADDR_LEN 24
50#define LIBIPW_4ADDR_LEN 30
51#define LIBIPW_FCS_LEN 4
52#define LIBIPW_HLEN (LIBIPW_4ADDR_LEN)
53#define LIBIPW_FRAME_LEN (LIBIPW_DATA_LEN + LIBIPW_HLEN)
b453872c
JG
54
55#define MIN_FRAG_THRESHOLD 256U
56#define MAX_FRAG_THRESHOLD 2346U
57
ea284152 58/* QOS control */
b0a4e7d8 59#define LIBIPW_QCTL_TID 0x000F
ea284152 60
b453872c
JG
61/* debug macros */
62
3756162b 63#ifdef CONFIG_LIBIPW_DEBUG
b0a4e7d8
JL
64extern u32 libipw_debug_level;
65#define LIBIPW_DEBUG(level, fmt, args...) \
66do { if (libipw_debug_level & (level)) \
27ae60f8 67 printk(KERN_DEBUG "libipw: %c %s " fmt, \
d5c003b4 68 in_interrupt() ? 'I' : 'U', __func__ , ## args); } while (0)
b453872c 69#else
b0a4e7d8 70#define LIBIPW_DEBUG(level, fmt, args...) do {} while (0)
3756162b 71#endif /* CONFIG_LIBIPW_DEBUG */
e88187ee 72
b453872c 73/*
e88187ee 74 * To use the debug system:
b453872c
JG
75 *
76 * If you are defining a new debug classification, simply add it to the #define
77 * list here in the form of:
78 *
b0a4e7d8 79 * #define LIBIPW_DL_xxxx VALUE
b453872c
JG
80 *
81 * shifting value to the left one bit from the previous entry. xxxx should be
82 * the name of the classification (for example, WEP)
83 *
b0a4e7d8
JL
84 * You then need to either add a LIBIPW_xxxx_DEBUG() macro definition for your
85 * classification, or use LIBIPW_DEBUG(LIBIPW_DL_xxxx, ...) whenever you want
b453872c
JG
86 * to send output to that classification.
87 *
88 * To add your debug level to the list of levels seen when you perform
89 *
91cb70c1 90 * % cat /proc/net/ieee80211/debug_level
b453872c 91 *
b0a4e7d8 92 * you simply need to add your entry to the libipw_debug_level array.
b453872c 93 *
91cb70c1 94 * If you do not see debug_level in /proc/net/ieee80211 then you do not have
3756162b 95 * CONFIG_LIBIPW_DEBUG defined in your kernel configuration
b453872c
JG
96 *
97 */
98
b0a4e7d8
JL
99#define LIBIPW_DL_INFO (1<<0)
100#define LIBIPW_DL_WX (1<<1)
101#define LIBIPW_DL_SCAN (1<<2)
102#define LIBIPW_DL_STATE (1<<3)
103#define LIBIPW_DL_MGMT (1<<4)
104#define LIBIPW_DL_FRAG (1<<5)
105#define LIBIPW_DL_DROP (1<<7)
106
107#define LIBIPW_DL_TX (1<<8)
108#define LIBIPW_DL_RX (1<<9)
109#define LIBIPW_DL_QOS (1<<31)
110
27ae60f8
PR
111#define LIBIPW_ERROR(f, a...) printk(KERN_ERR "libipw: " f, ## a)
112#define LIBIPW_WARNING(f, a...) printk(KERN_WARNING "libipw: " f, ## a)
b0a4e7d8
JL
113#define LIBIPW_DEBUG_INFO(f, a...) LIBIPW_DEBUG(LIBIPW_DL_INFO, f, ## a)
114
115#define LIBIPW_DEBUG_WX(f, a...) LIBIPW_DEBUG(LIBIPW_DL_WX, f, ## a)
116#define LIBIPW_DEBUG_SCAN(f, a...) LIBIPW_DEBUG(LIBIPW_DL_SCAN, f, ## a)
117#define LIBIPW_DEBUG_STATE(f, a...) LIBIPW_DEBUG(LIBIPW_DL_STATE, f, ## a)
118#define LIBIPW_DEBUG_MGMT(f, a...) LIBIPW_DEBUG(LIBIPW_DL_MGMT, f, ## a)
119#define LIBIPW_DEBUG_FRAG(f, a...) LIBIPW_DEBUG(LIBIPW_DL_FRAG, f, ## a)
120#define LIBIPW_DEBUG_DROP(f, a...) LIBIPW_DEBUG(LIBIPW_DL_DROP, f, ## a)
121#define LIBIPW_DEBUG_TX(f, a...) LIBIPW_DEBUG(LIBIPW_DL_TX, f, ## a)
122#define LIBIPW_DEBUG_RX(f, a...) LIBIPW_DEBUG(LIBIPW_DL_RX, f, ## a)
123#define LIBIPW_DEBUG_QOS(f, a...) LIBIPW_DEBUG(LIBIPW_DL_QOS, f, ## a)
b453872c 124#include <linux/netdevice.h>
74079fdc 125#include <linux/if_arp.h> /* ARPHRD_ETHER */
b453872c
JG
126
127#ifndef WIRELESS_SPY
099c5bb1 128#define WIRELESS_SPY /* enable iwspy support */
b453872c 129#endif
099c5bb1 130#include <net/iw_handler.h> /* new driver API */
b453872c 131
74079fdc 132#define ETH_P_PREAUTH 0x88C7 /* IEEE 802.11i pre-authentication */
b453872c
JG
133
134#ifndef ETH_P_80211_RAW
135#define ETH_P_80211_RAW (ETH_P_ECONET + 1)
136#endif
137
138/* IEEE 802.11 defines */
139
140#define P80211_OUI_LEN 3
141
b0a4e7d8 142struct libipw_snap_hdr {
b453872c 143
74079fdc
JK
144 u8 dsap; /* always 0xAA */
145 u8 ssap; /* always 0xAA */
146 u8 ctrl; /* always 0x03 */
147 u8 oui[P80211_OUI_LEN]; /* organizational universal id */
b453872c 148
ba2d3587 149} __packed;
b453872c 150
b0a4e7d8 151#define SNAP_SIZE sizeof(struct libipw_snap_hdr)
b453872c 152
f13baae4 153#define WLAN_FC_GET_VERS(fc) ((fc) & IEEE80211_FCTL_VERS)
b453872c
JG
154#define WLAN_FC_GET_TYPE(fc) ((fc) & IEEE80211_FCTL_FTYPE)
155#define WLAN_FC_GET_STYPE(fc) ((fc) & IEEE80211_FCTL_STYPE)
156
157#define WLAN_GET_SEQ_FRAG(seq) ((seq) & IEEE80211_SCTL_FRAG)
3eb54605 158#define WLAN_GET_SEQ_SEQ(seq) (((seq) & IEEE80211_SCTL_SEQ) >> 4)
b453872c 159
b0a4e7d8
JL
160#define LIBIPW_STATMASK_SIGNAL (1<<0)
161#define LIBIPW_STATMASK_RSSI (1<<1)
162#define LIBIPW_STATMASK_NOISE (1<<2)
163#define LIBIPW_STATMASK_RATE (1<<3)
164#define LIBIPW_STATMASK_WEMASK 0x7
165
166#define LIBIPW_CCK_MODULATION (1<<0)
167#define LIBIPW_OFDM_MODULATION (1<<1)
168
169#define LIBIPW_24GHZ_BAND (1<<0)
170#define LIBIPW_52GHZ_BAND (1<<1)
171
172#define LIBIPW_CCK_RATE_1MB 0x02
173#define LIBIPW_CCK_RATE_2MB 0x04
174#define LIBIPW_CCK_RATE_5MB 0x0B
175#define LIBIPW_CCK_RATE_11MB 0x16
176#define LIBIPW_OFDM_RATE_6MB 0x0C
177#define LIBIPW_OFDM_RATE_9MB 0x12
178#define LIBIPW_OFDM_RATE_12MB 0x18
179#define LIBIPW_OFDM_RATE_18MB 0x24
180#define LIBIPW_OFDM_RATE_24MB 0x30
181#define LIBIPW_OFDM_RATE_36MB 0x48
182#define LIBIPW_OFDM_RATE_48MB 0x60
183#define LIBIPW_OFDM_RATE_54MB 0x6C
184#define LIBIPW_BASIC_RATE_MASK 0x80
185
186#define LIBIPW_CCK_RATE_1MB_MASK (1<<0)
187#define LIBIPW_CCK_RATE_2MB_MASK (1<<1)
188#define LIBIPW_CCK_RATE_5MB_MASK (1<<2)
189#define LIBIPW_CCK_RATE_11MB_MASK (1<<3)
190#define LIBIPW_OFDM_RATE_6MB_MASK (1<<4)
191#define LIBIPW_OFDM_RATE_9MB_MASK (1<<5)
192#define LIBIPW_OFDM_RATE_12MB_MASK (1<<6)
193#define LIBIPW_OFDM_RATE_18MB_MASK (1<<7)
194#define LIBIPW_OFDM_RATE_24MB_MASK (1<<8)
195#define LIBIPW_OFDM_RATE_36MB_MASK (1<<9)
196#define LIBIPW_OFDM_RATE_48MB_MASK (1<<10)
197#define LIBIPW_OFDM_RATE_54MB_MASK (1<<11)
198
199#define LIBIPW_CCK_RATES_MASK 0x0000000F
200#define LIBIPW_CCK_BASIC_RATES_MASK (LIBIPW_CCK_RATE_1MB_MASK | \
201 LIBIPW_CCK_RATE_2MB_MASK)
202#define LIBIPW_CCK_DEFAULT_RATES_MASK (LIBIPW_CCK_BASIC_RATES_MASK | \
203 LIBIPW_CCK_RATE_5MB_MASK | \
204 LIBIPW_CCK_RATE_11MB_MASK)
205
206#define LIBIPW_OFDM_RATES_MASK 0x00000FF0
207#define LIBIPW_OFDM_BASIC_RATES_MASK (LIBIPW_OFDM_RATE_6MB_MASK | \
208 LIBIPW_OFDM_RATE_12MB_MASK | \
209 LIBIPW_OFDM_RATE_24MB_MASK)
210#define LIBIPW_OFDM_DEFAULT_RATES_MASK (LIBIPW_OFDM_BASIC_RATES_MASK | \
211 LIBIPW_OFDM_RATE_9MB_MASK | \
212 LIBIPW_OFDM_RATE_18MB_MASK | \
213 LIBIPW_OFDM_RATE_36MB_MASK | \
214 LIBIPW_OFDM_RATE_48MB_MASK | \
215 LIBIPW_OFDM_RATE_54MB_MASK)
216#define LIBIPW_DEFAULT_RATES_MASK (LIBIPW_OFDM_DEFAULT_RATES_MASK | \
217 LIBIPW_CCK_DEFAULT_RATES_MASK)
218
219#define LIBIPW_NUM_OFDM_RATES 8
220#define LIBIPW_NUM_CCK_RATES 4
221#define LIBIPW_OFDM_SHIFT_MASK_A 4
b453872c 222
b453872c 223/* NOTE: This data is for statistical purposes; not all hardware provides this
c9fa7d5d 224 * information for frames received.
b0a4e7d8 225 * For libipw_rx_mgt, you need to set at least the 'len' parameter.
c9fa7d5d 226 */
b0a4e7d8 227struct libipw_rx_stats {
b453872c
JG
228 u32 mac_time;
229 s8 rssi;
230 u8 signal;
231 u8 noise;
74079fdc 232 u16 rate; /* in 100 kbps */
b453872c
JG
233 u8 received_channel;
234 u8 control;
235 u8 mask;
236 u8 freq;
237 u16 len;
b79e20b6
ZY
238 u64 tsf;
239 u32 beacon_time;
b453872c
JG
240};
241
242/* IEEE 802.11 requires that STA supports concurrent reception of at least
243 * three fragmented frames. This define can be increased to support more
244 * concurrent frames, but it should be noted that each entry can consume about
245 * 2 kB of RAM and increasing cache size will slow down frame reassembly. */
b0a4e7d8 246#define LIBIPW_FRAG_CACHE_LEN 4
b453872c 247
b0a4e7d8 248struct libipw_frag_entry {
b453872c
JG
249 unsigned long first_frag_time;
250 unsigned int seq;
251 unsigned int last_frag;
252 struct sk_buff *skb;
253 u8 src_addr[ETH_ALEN];
254 u8 dst_addr[ETH_ALEN];
255};
256
b0a4e7d8 257struct libipw_stats {
b453872c
JG
258 unsigned int tx_unicast_frames;
259 unsigned int tx_multicast_frames;
260 unsigned int tx_fragments;
261 unsigned int tx_unicast_octets;
262 unsigned int tx_multicast_octets;
263 unsigned int tx_deferred_transmissions;
264 unsigned int tx_single_retry_frames;
265 unsigned int tx_multiple_retry_frames;
266 unsigned int tx_retry_limit_exceeded;
267 unsigned int tx_discards;
268 unsigned int rx_unicast_frames;
269 unsigned int rx_multicast_frames;
270 unsigned int rx_fragments;
271 unsigned int rx_unicast_octets;
272 unsigned int rx_multicast_octets;
273 unsigned int rx_fcs_errors;
274 unsigned int rx_discards_no_buffer;
275 unsigned int tx_discards_wrong_sa;
276 unsigned int rx_discards_undecryptable;
277 unsigned int rx_message_in_msg_fragments;
278 unsigned int rx_message_in_bad_msg_fragments;
279};
280
b0a4e7d8 281struct libipw_device;
b453872c 282
f1bf6638
JK
283#define SEC_KEY_1 (1<<0)
284#define SEC_KEY_2 (1<<1)
285#define SEC_KEY_3 (1<<2)
286#define SEC_KEY_4 (1<<3)
287#define SEC_ACTIVE_KEY (1<<4)
288#define SEC_AUTH_MODE (1<<5)
289#define SEC_UNICAST_GROUP (1<<6)
290#define SEC_LEVEL (1<<7)
291#define SEC_ENABLED (1<<8)
259bf1fd 292#define SEC_ENCRYPT (1<<9)
f1bf6638
JK
293
294#define SEC_LEVEL_0 0 /* None */
295#define SEC_LEVEL_1 1 /* WEP 40 and 104 bit */
296#define SEC_LEVEL_2 2 /* Level 1 + TKIP */
297#define SEC_LEVEL_2_CKIP 3 /* Level 1 + CKIP */
298#define SEC_LEVEL_3 4 /* Level 2 + CCMP */
299
e0d369d1
JK
300#define SEC_ALG_NONE 0
301#define SEC_ALG_WEP 1
302#define SEC_ALG_TKIP 2
303#define SEC_ALG_CCMP 3
304
f1bf6638
JK
305#define WEP_KEYS 4
306#define WEP_KEY_LEN 13
307#define SCM_KEY_LEN 32
308#define SCM_TEMPORAL_KEY_LENGTH 16
b453872c 309
b0a4e7d8 310struct libipw_security {
0f202aa2
JL
311 u16 active_key:2, enabled:1, unicast_uses_group:1, encrypt:1;
312 u8 auth_mode;
e0d369d1 313 u8 encode_alg[WEP_KEYS];
b453872c 314 u8 key_sizes[WEP_KEYS];
f1bf6638 315 u8 keys[WEP_KEYS][SCM_KEY_LEN];
b453872c
JG
316 u8 level;
317 u16 flags;
ba2d3587 318} __packed;
b453872c 319
b453872c
JG
320/*
321
322 802.11 data frame from AP
323
324 ,-------------------------------------------------------------------.
325Bytes | 2 | 2 | 6 | 6 | 6 | 2 | 0..2312 | 4 |
326 |------|------|---------|---------|---------|------|---------|------|
327Desc. | ctrl | dura | DA/RA | TA | SA | Sequ | frame | fcs |
328 | | tion | (BSSID) | | | ence | data | |
329 `-------------------------------------------------------------------'
330
331Total: 28-2340 bytes
332
333*/
334
b453872c
JG
335#define BEACON_PROBE_SSID_ID_POSITION 12
336
b0a4e7d8 337struct libipw_hdr_1addr {
cdcfc210
JK
338 __le16 frame_ctl;
339 __le16 duration_id;
ee34af37
JK
340 u8 addr1[ETH_ALEN];
341 u8 payload[0];
ba2d3587 342} __packed;
ee34af37 343
b0a4e7d8 344struct libipw_hdr_2addr {
cdcfc210
JK
345 __le16 frame_ctl;
346 __le16 duration_id;
ee34af37
JK
347 u8 addr1[ETH_ALEN];
348 u8 addr2[ETH_ALEN];
349 u8 payload[0];
ba2d3587 350} __packed;
ee34af37 351
b0a4e7d8 352struct libipw_hdr_3addr {
cdcfc210
JK
353 __le16 frame_ctl;
354 __le16 duration_id;
ee34af37
JK
355 u8 addr1[ETH_ALEN];
356 u8 addr2[ETH_ALEN];
357 u8 addr3[ETH_ALEN];
cdcfc210 358 __le16 seq_ctl;
ee34af37 359 u8 payload[0];
ba2d3587 360} __packed;
ee34af37 361
b0a4e7d8 362struct libipw_hdr_4addr {
cdcfc210
JK
363 __le16 frame_ctl;
364 __le16 duration_id;
ee34af37
JK
365 u8 addr1[ETH_ALEN];
366 u8 addr2[ETH_ALEN];
367 u8 addr3[ETH_ALEN];
cdcfc210 368 __le16 seq_ctl;
ee34af37
JK
369 u8 addr4[ETH_ALEN];
370 u8 payload[0];
ba2d3587 371} __packed;
ee34af37 372
b0a4e7d8 373struct libipw_hdr_3addrqos {
cdcfc210
JK
374 __le16 frame_ctl;
375 __le16 duration_id;
9e8571af
JK
376 u8 addr1[ETH_ALEN];
377 u8 addr2[ETH_ALEN];
378 u8 addr3[ETH_ALEN];
cdcfc210 379 __le16 seq_ctl;
9e8571af 380 u8 payload[0];
cdcfc210 381 __le16 qos_ctl;
ba2d3587 382} __packed;
9e8571af 383
b0a4e7d8 384struct libipw_info_element {
b453872c
JG
385 u8 id;
386 u8 len;
387 u8 data[0];
ba2d3587 388} __packed;
b453872c
JG
389
390/*
391 * These are the data types that can make up management packets
392 *
393 u16 auth_algorithm;
394 u16 auth_sequence;
395 u16 beacon_interval;
396 u16 capability;
397 u8 current_ap[ETH_ALEN];
398 u16 listen_interval;
399 struct {
400 u16 association_id:14, reserved:2;
ba2d3587 401 } __packed;
b453872c
JG
402 u32 time_stamp[2];
403 u16 reason;
404 u16 status;
405*/
406
b0a4e7d8
JL
407struct libipw_auth {
408 struct libipw_hdr_3addr header;
099c5bb1
JB
409 __le16 algorithm;
410 __le16 transaction;
411 __le16 status;
e5658d3e 412 /* challenge */
b0a4e7d8 413 struct libipw_info_element info_element[0];
ba2d3587 414} __packed;
b453872c 415
b0a4e7d8 416struct libipw_channel_switch {
b79e20b6
ZY
417 u8 id;
418 u8 len;
419 u8 mode;
420 u8 channel;
421 u8 count;
ba2d3587 422} __packed;
b79e20b6 423
b0a4e7d8
JL
424struct libipw_action {
425 struct libipw_hdr_3addr header;
b79e20b6
ZY
426 u8 category;
427 u8 action;
428 union {
b0a4e7d8 429 struct libipw_action_exchange {
b79e20b6 430 u8 token;
b0a4e7d8 431 struct libipw_info_element info_element[0];
b79e20b6 432 } exchange;
b0a4e7d8 433 struct libipw_channel_switch channel_switch;
b79e20b6
ZY
434
435 } format;
ba2d3587 436} __packed;
b79e20b6 437
b0a4e7d8
JL
438struct libipw_disassoc {
439 struct libipw_hdr_3addr header;
e5658d3e 440 __le16 reason;
ba2d3587 441} __packed;
ee34af37 442
e5658d3e 443/* Alias deauth for disassoc */
b0a4e7d8 444#define libipw_deauth libipw_disassoc
e5658d3e 445
b0a4e7d8
JL
446struct libipw_probe_request {
447 struct libipw_hdr_3addr header;
e5658d3e 448 /* SSID, supported rates */
b0a4e7d8 449 struct libipw_info_element info_element[0];
ba2d3587 450} __packed;
ee34af37 451
b0a4e7d8
JL
452struct libipw_probe_response {
453 struct libipw_hdr_3addr header;
d9e94d56 454 __le32 time_stamp[2];
099c5bb1
JB
455 __le16 beacon_interval;
456 __le16 capability;
e5658d3e
JK
457 /* SSID, supported rates, FH params, DS params,
458 * CF params, IBSS params, TIM (if beacon), RSN */
b0a4e7d8 459 struct libipw_info_element info_element[0];
ba2d3587 460} __packed;
b453872c 461
ee34af37 462/* Alias beacon for probe_response */
b0a4e7d8 463#define libipw_beacon libipw_probe_response
ee34af37 464
b0a4e7d8
JL
465struct libipw_assoc_request {
466 struct libipw_hdr_3addr header;
cdcfc210
JK
467 __le16 capability;
468 __le16 listen_interval;
e5658d3e 469 /* SSID, supported rates, RSN */
b0a4e7d8 470 struct libipw_info_element info_element[0];
ba2d3587 471} __packed;
ee34af37 472
b0a4e7d8
JL
473struct libipw_reassoc_request {
474 struct libipw_hdr_3addr header;
099c5bb1
JB
475 __le16 capability;
476 __le16 listen_interval;
b453872c 477 u8 current_ap[ETH_ALEN];
b0a4e7d8 478 struct libipw_info_element info_element[0];
ba2d3587 479} __packed;
b453872c 480
b0a4e7d8
JL
481struct libipw_assoc_response {
482 struct libipw_hdr_3addr header;
099c5bb1
JB
483 __le16 capability;
484 __le16 status;
485 __le16 aid;
e5658d3e 486 /* supported rates */
b0a4e7d8 487 struct libipw_info_element info_element[0];
ba2d3587 488} __packed;
b453872c 489
b0a4e7d8 490struct libipw_txb {
b453872c
JG
491 u8 nr_frags;
492 u8 encrypted;
ee34af37
JK
493 u8 rts_included;
494 u8 reserved;
d9e94d56
AV
495 u16 frag_size;
496 u16 payload_size;
b453872c
JG
497 struct sk_buff *fragments[0];
498};
499
099c5bb1 500/* SWEEP TABLE ENTRIES NUMBER */
b453872c
JG
501#define MAX_SWEEP_TAB_ENTRIES 42
502#define MAX_SWEEP_TAB_ENTRIES_PER_PACKET 7
503/* MAX_RATES_LENGTH needs to be 12. The spec says 8, and many APs
504 * only use 8, and then use extended rates for the remaining supported
505 * rates. Other APs, however, stick all of their supported rates on the
506 * main rates information element... */
507#define MAX_RATES_LENGTH ((u8)12)
508#define MAX_RATES_EX_LENGTH ((u8)16)
509#define MAX_NETWORK_COUNT 128
510
511#define CRC_LENGTH 4U
512
513#define MAX_WPA_IE_LEN 64
514
9e8571af
JK
515#define NETWORK_HAS_OFDM (1<<1)
516#define NETWORK_HAS_CCK (1<<2)
517
518/* QoS structure */
519#define NETWORK_HAS_QOS_PARAMETERS (1<<3)
520#define NETWORK_HAS_QOS_INFORMATION (1<<4)
b79e20b6
ZY
521#define NETWORK_HAS_QOS_MASK (NETWORK_HAS_QOS_PARAMETERS | \
522 NETWORK_HAS_QOS_INFORMATION)
523
524/* 802.11h */
525#define NETWORK_HAS_POWER_CONSTRAINT (1<<5)
526#define NETWORK_HAS_CSA (1<<6)
527#define NETWORK_HAS_QUIET (1<<7)
528#define NETWORK_HAS_IBSS_DFS (1<<8)
529#define NETWORK_HAS_TPC_REPORT (1<<9)
9e8571af 530
d8e2be90
DD
531#define NETWORK_HAS_ERP_VALUE (1<<10)
532
9e8571af
JK
533#define QOS_QUEUE_NUM 4
534#define QOS_OUI_LEN 3
535#define QOS_OUI_TYPE 2
536#define QOS_ELEMENT_ID 221
537#define QOS_OUI_INFO_SUB_TYPE 0
538#define QOS_OUI_PARAM_SUB_TYPE 1
539#define QOS_VERSION_1 1
540#define QOS_AIFSN_MIN_VALUE 2
541
b0a4e7d8 542struct libipw_qos_information_element {
9e8571af
JK
543 u8 elementID;
544 u8 length;
545 u8 qui[QOS_OUI_LEN];
546 u8 qui_type;
547 u8 qui_subtype;
548 u8 version;
549 u8 ac_info;
ba2d3587 550} __packed;
9e8571af 551
b0a4e7d8 552struct libipw_qos_ac_parameter {
9e8571af
JK
553 u8 aci_aifsn;
554 u8 ecw_min_max;
cdcfc210 555 __le16 tx_op_limit;
ba2d3587 556} __packed;
9e8571af 557
b0a4e7d8
JL
558struct libipw_qos_parameter_info {
559 struct libipw_qos_information_element info_element;
9e8571af 560 u8 reserved;
b0a4e7d8 561 struct libipw_qos_ac_parameter ac_params_record[QOS_QUEUE_NUM];
ba2d3587 562} __packed;
9e8571af 563
b0a4e7d8 564struct libipw_qos_parameters {
cdcfc210
JK
565 __le16 cw_min[QOS_QUEUE_NUM];
566 __le16 cw_max[QOS_QUEUE_NUM];
9e8571af
JK
567 u8 aifs[QOS_QUEUE_NUM];
568 u8 flag[QOS_QUEUE_NUM];
cdcfc210 569 __le16 tx_op_limit[QOS_QUEUE_NUM];
ba2d3587 570} __packed;
9e8571af 571
b0a4e7d8
JL
572struct libipw_qos_data {
573 struct libipw_qos_parameters parameters;
9e8571af
JK
574 int active;
575 int supported;
576 u8 param_count;
577 u8 old_param_count;
578};
579
b0a4e7d8 580struct libipw_tim_parameters {
9e8571af
JK
581 u8 tim_count;
582 u8 tim_period;
ba2d3587 583} __packed;
9e8571af
JK
584
585/*******************************************************/
b453872c 586
b0a4e7d8 587struct libipw_tpc_report {
b79e20b6
ZY
588 u8 transmit_power;
589 u8 link_margin;
ba2d3587 590} __packed;
b79e20b6 591
b0a4e7d8 592struct libipw_channel_map {
b79e20b6
ZY
593 u8 channel;
594 u8 map;
ba2d3587 595} __packed;
b79e20b6 596
b0a4e7d8
JL
597struct libipw_ibss_dfs {
598 struct libipw_info_element ie;
b79e20b6
ZY
599 u8 owner[ETH_ALEN];
600 u8 recovery_interval;
b0a4e7d8 601 struct libipw_channel_map channel_map[0];
b79e20b6
ZY
602};
603
b0a4e7d8 604struct libipw_csa {
b79e20b6
ZY
605 u8 mode;
606 u8 channel;
607 u8 count;
ba2d3587 608} __packed;
b79e20b6 609
b0a4e7d8 610struct libipw_quiet {
b79e20b6
ZY
611 u8 count;
612 u8 period;
613 u8 duration;
614 u8 offset;
ba2d3587 615} __packed;
b79e20b6 616
b0a4e7d8 617struct libipw_network {
b453872c
JG
618 /* These entries are used to identify a unique network */
619 u8 bssid[ETH_ALEN];
620 u8 channel;
621 /* Ensure null-terminated for any debug msgs */
622 u8 ssid[IW_ESSID_MAX_SIZE + 1];
623 u8 ssid_len;
624
b0a4e7d8 625 struct libipw_qos_data qos_data;
9e8571af 626
b453872c 627 /* These are network statistics */
b0a4e7d8 628 struct libipw_rx_stats stats;
b453872c
JG
629 u16 capability;
630 u8 rates[MAX_RATES_LENGTH];
631 u8 rates_len;
632 u8 rates_ex[MAX_RATES_EX_LENGTH];
633 u8 rates_ex_len;
634 unsigned long last_scanned;
635 u8 mode;
b79e20b6 636 u32 flags;
b453872c
JG
637 u32 last_associate;
638 u32 time_stamp[2];
639 u16 beacon_interval;
640 u16 listen_interval;
641 u16 atim_window;
42c94e43 642 u8 erp_value;
b453872c
JG
643 u8 wpa_ie[MAX_WPA_IE_LEN];
644 size_t wpa_ie_len;
645 u8 rsn_ie[MAX_WPA_IE_LEN];
646 size_t rsn_ie_len;
b0a4e7d8 647 struct libipw_tim_parameters tim;
b79e20b6
ZY
648
649 /* 802.11h info */
650
651 /* Power Constraint - mandatory if spctrm mgmt required */
652 u8 power_constraint;
653
654 /* TPC Report - mandatory if spctrm mgmt required */
b0a4e7d8 655 struct libipw_tpc_report tpc_report;
b79e20b6
ZY
656
657 /* IBSS DFS - mandatory if spctrm mgmt required and IBSS
658 * NOTE: This is variable length and so must be allocated dynamically */
b0a4e7d8 659 struct libipw_ibss_dfs *ibss_dfs;
b79e20b6
ZY
660
661 /* Channel Switch Announcement - optional if spctrm mgmt required */
b0a4e7d8 662 struct libipw_csa csa;
b79e20b6
ZY
663
664 /* Quiet - optional if spctrm mgmt required */
b0a4e7d8 665 struct libipw_quiet quiet;
b79e20b6 666
b453872c
JG
667 struct list_head list;
668};
669
b0a4e7d8
JL
670enum libipw_state {
671 LIBIPW_UNINITIALIZED = 0,
672 LIBIPW_INITIALIZED,
673 LIBIPW_ASSOCIATING,
674 LIBIPW_ASSOCIATED,
675 LIBIPW_AUTHENTICATING,
676 LIBIPW_AUTHENTICATED,
677 LIBIPW_SHUTDOWN
b453872c
JG
678};
679
680#define DEFAULT_MAX_SCAN_AGE (15 * HZ)
681#define DEFAULT_FTS 2346
b453872c 682
b0a4e7d8
JL
683#define CFG_LIBIPW_RESERVE_FCS (1<<0)
684#define CFG_LIBIPW_COMPUTE_FCS (1<<1)
685#define CFG_LIBIPW_RTS (1<<2)
b453872c 686
b0a4e7d8
JL
687#define LIBIPW_24GHZ_MIN_CHANNEL 1
688#define LIBIPW_24GHZ_MAX_CHANNEL 14
689#define LIBIPW_24GHZ_CHANNELS (LIBIPW_24GHZ_MAX_CHANNEL - \
690 LIBIPW_24GHZ_MIN_CHANNEL + 1)
02cda6ae 691
b0a4e7d8
JL
692#define LIBIPW_52GHZ_MIN_CHANNEL 34
693#define LIBIPW_52GHZ_MAX_CHANNEL 165
694#define LIBIPW_52GHZ_CHANNELS (LIBIPW_52GHZ_MAX_CHANNEL - \
695 LIBIPW_52GHZ_MIN_CHANNEL + 1)
02cda6ae
JK
696
697enum {
b0a4e7d8
JL
698 LIBIPW_CH_PASSIVE_ONLY = (1 << 0),
699 LIBIPW_CH_80211H_RULES = (1 << 1),
700 LIBIPW_CH_B_ONLY = (1 << 2),
701 LIBIPW_CH_NO_IBSS = (1 << 3),
702 LIBIPW_CH_UNIFORM_SPREADING = (1 << 4),
703 LIBIPW_CH_RADAR_DETECT = (1 << 5),
704 LIBIPW_CH_INVALID = (1 << 6),
02cda6ae
JK
705};
706
b0a4e7d8 707struct libipw_channel {
74f49033 708 u32 freq; /* in MHz */
02cda6ae
JK
709 u8 channel;
710 u8 flags;
74f49033 711 u8 max_power; /* in dBm */
02cda6ae
JK
712};
713
b0a4e7d8 714struct libipw_geo {
02cda6ae
JK
715 u8 name[4];
716 u8 bg_channels;
717 u8 a_channels;
b0a4e7d8
JL
718 struct libipw_channel bg[LIBIPW_24GHZ_CHANNELS];
719 struct libipw_channel a[LIBIPW_52GHZ_CHANNELS];
02cda6ae
JK
720};
721
b0a4e7d8 722struct libipw_device {
b453872c 723 struct net_device *dev;
a3caa99e 724 struct wireless_dev wdev;
b0a4e7d8 725 struct libipw_security sec;
b453872c
JG
726
727 /* Bookkeeping structures */
b0a4e7d8 728 struct libipw_stats ieee_stats;
b453872c 729
b0a4e7d8 730 struct libipw_geo geo;
a3caa99e
JL
731 struct ieee80211_supported_band bg_band;
732 struct ieee80211_supported_band a_band;
02cda6ae 733
b453872c
JG
734 /* Probe / Beacon management */
735 struct list_head network_free_list;
736 struct list_head network_list;
8e59340e 737 struct libipw_network *networks[MAX_NETWORK_COUNT];
b453872c
JG
738 int scans;
739 int scan_age;
740
74079fdc
JK
741 int iw_mode; /* operating mode (IW_MODE_*) */
742 struct iw_spy_data spy_data; /* iwspy support */
b453872c
JG
743
744 spinlock_t lock;
745
74079fdc
JK
746 int tx_headroom; /* Set to size of any additional room needed at front
747 * of allocated Tx SKBs */
b453872c
JG
748 u32 config;
749
750 /* WEP and other encryption related settings at the device level */
74079fdc 751 int open_wep; /* Set to 1 to allow unencrypted frames */
b453872c 752
b453872c
JG
753 /* If the host performs {en,de}cryption, then set to 1 */
754 int host_encrypt;
1264fc04 755 int host_encrypt_msdu;
b453872c 756 int host_decrypt;
ccd0fda3
JK
757 /* host performs multicast decryption */
758 int host_mc_decrypt;
759
c9308b06
DD
760 /* host should strip IV and ICV from protected frames */
761 /* meaningful only when hardware decryption is being used */
762 int host_strip_iv_icv;
763
1264fc04 764 int host_open_frag;
74079fdc 765 int ieee802_1x; /* is IEEE 802.1X used */
b453872c
JG
766
767 /* WPA data */
768 int wpa_enabled;
769 int drop_unencrypted;
b453872c
JG
770 int privacy_invoked;
771 size_t wpa_ie_len;
772 u8 *wpa_ie;
773
274bfb8d 774 struct lib80211_crypt_info crypt_info;
b453872c 775
74079fdc
JK
776 int bcrx_sta_key; /* use individual keys to override default keys even
777 * with RX of broad/multicast frames */
b453872c
JG
778
779 /* Fragmentation structures */
b0a4e7d8 780 struct libipw_frag_entry frag_cache[LIBIPW_FRAG_CACHE_LEN];
b453872c 781 unsigned int frag_next_idx;
74079fdc 782 u16 fts; /* Fragmentation Threshold */
3cdd00c5 783 u16 rts; /* RTS threshold */
b453872c
JG
784
785 /* Association info */
786 u8 bssid[ETH_ALEN];
787
b0a4e7d8 788 enum libipw_state state;
b453872c 789
74079fdc
JK
790 int mode; /* A, B, G */
791 int modulation; /* CCK, OFDM */
792 int freq_band; /* 2.4Ghz, 5.2Ghz, Mixed */
3bc5ed68 793 int abg_true; /* ABG flag */
b453872c 794
b1b508e1
JK
795 int perfect_rssi;
796 int worst_rssi;
797
837925df
LF
798 u16 prev_seq_ctl; /* used to drop duplicate frames */
799
b453872c 800 /* Callback functions */
74079fdc 801 void (*set_security) (struct net_device * dev,
b0a4e7d8 802 struct libipw_security * sec);
d0cf9c0d
SH
803 netdev_tx_t (*hard_start_xmit) (struct libipw_txb * txb,
804 struct net_device * dev, int pri);
3f552bbf
JK
805 int (*is_queue_full) (struct net_device * dev, int pri);
806
9e8571af 807 int (*handle_management) (struct net_device * dev,
b0a4e7d8 808 struct libipw_network * network, u16 type);
73858062 809 int (*is_qos_active) (struct net_device *dev, struct sk_buff *skb);
9e8571af 810
3f552bbf
JK
811 /* Typical STA methods */
812 int (*handle_auth) (struct net_device * dev,
b0a4e7d8 813 struct libipw_auth * auth);
31b59eae 814 int (*handle_deauth) (struct net_device * dev,
b0a4e7d8 815 struct libipw_deauth * auth);
b79e20b6 816 int (*handle_action) (struct net_device * dev,
b0a4e7d8
JL
817 struct libipw_action * action,
818 struct libipw_rx_stats * stats);
3f552bbf 819 int (*handle_disassoc) (struct net_device * dev,
b0a4e7d8 820 struct libipw_disassoc * assoc);
3f552bbf 821 int (*handle_beacon) (struct net_device * dev,
b0a4e7d8
JL
822 struct libipw_beacon * beacon,
823 struct libipw_network * network);
3f552bbf 824 int (*handle_probe_response) (struct net_device * dev,
b0a4e7d8
JL
825 struct libipw_probe_response * resp,
826 struct libipw_network * network);
42c94e43 827 int (*handle_probe_request) (struct net_device * dev,
b0a4e7d8
JL
828 struct libipw_probe_request * req,
829 struct libipw_rx_stats * stats);
3f552bbf 830 int (*handle_assoc_response) (struct net_device * dev,
b0a4e7d8
JL
831 struct libipw_assoc_response * resp,
832 struct libipw_network * network);
3f552bbf
JK
833
834 /* Typical AP methods */
835 int (*handle_assoc_request) (struct net_device * dev);
836 int (*handle_reassoc_request) (struct net_device * dev,
b0a4e7d8 837 struct libipw_reassoc_request * req);
b453872c
JG
838
839 /* This must be the last item so that it points to the data
27ae60f8 840 * allocated beyond this structure by alloc_libipw */
b453872c
JG
841 u8 priv[0];
842};
843
844#define IEEE_A (1<<0)
845#define IEEE_B (1<<1)
846#define IEEE_G (1<<2)
847#define IEEE_MODE_MASK (IEEE_A|IEEE_B|IEEE_G)
848
b0a4e7d8 849static inline void *libipw_priv(struct net_device *dev)
b453872c 850{
b0a4e7d8 851 return ((struct libipw_device *)netdev_priv(dev))->priv;
b453872c
JG
852}
853
b0a4e7d8 854static inline int libipw_is_valid_mode(struct libipw_device *ieee,
74079fdc 855 int mode)
b453872c
JG
856{
857 /*
858 * It is possible for both access points and our device to support
859 * combinations of modes, so as long as there is one valid combination
860 * of ap/device supported modes, then return success
861 *
862 */
863 if ((mode & IEEE_A) &&
b0a4e7d8
JL
864 (ieee->modulation & LIBIPW_OFDM_MODULATION) &&
865 (ieee->freq_band & LIBIPW_52GHZ_BAND))
b453872c
JG
866 return 1;
867
868 if ((mode & IEEE_G) &&
b0a4e7d8
JL
869 (ieee->modulation & LIBIPW_OFDM_MODULATION) &&
870 (ieee->freq_band & LIBIPW_24GHZ_BAND))
b453872c
JG
871 return 1;
872
873 if ((mode & IEEE_B) &&
b0a4e7d8
JL
874 (ieee->modulation & LIBIPW_CCK_MODULATION) &&
875 (ieee->freq_band & LIBIPW_24GHZ_BAND))
b453872c
JG
876 return 1;
877
878 return 0;
879}
880
b0a4e7d8 881static inline int libipw_get_hdrlen(u16 fc)
b453872c 882{
b0a4e7d8 883 int hdrlen = LIBIPW_3ADDR_LEN;
9e8571af 884 u16 stype = WLAN_FC_GET_STYPE(fc);
b453872c
JG
885
886 switch (WLAN_FC_GET_TYPE(fc)) {
887 case IEEE80211_FTYPE_DATA:
888 if ((fc & IEEE80211_FCTL_FROMDS) && (fc & IEEE80211_FCTL_TODS))
b0a4e7d8 889 hdrlen = LIBIPW_4ADDR_LEN;
9e8571af
JK
890 if (stype & IEEE80211_STYPE_QOS_DATA)
891 hdrlen += 2;
b453872c
JG
892 break;
893 case IEEE80211_FTYPE_CTL:
894 switch (WLAN_FC_GET_STYPE(fc)) {
895 case IEEE80211_STYPE_CTS:
896 case IEEE80211_STYPE_ACK:
b0a4e7d8 897 hdrlen = LIBIPW_1ADDR_LEN;
b453872c
JG
898 break;
899 default:
b0a4e7d8 900 hdrlen = LIBIPW_2ADDR_LEN;
b453872c
JG
901 break;
902 }
903 break;
904 }
905
906 return hdrlen;
907}
908
b0a4e7d8 909static inline u8 *libipw_get_payload(struct ieee80211_hdr *hdr)
ee34af37 910{
b0a4e7d8
JL
911 switch (libipw_get_hdrlen(le16_to_cpu(hdr->frame_control))) {
912 case LIBIPW_1ADDR_LEN:
913 return ((struct libipw_hdr_1addr *)hdr)->payload;
914 case LIBIPW_2ADDR_LEN:
915 return ((struct libipw_hdr_2addr *)hdr)->payload;
916 case LIBIPW_3ADDR_LEN:
917 return ((struct libipw_hdr_3addr *)hdr)->payload;
918 case LIBIPW_4ADDR_LEN:
919 return ((struct libipw_hdr_4addr *)hdr)->payload;
ee34af37 920 }
cea00da3 921 return NULL;
ee34af37
JK
922}
923
b0a4e7d8 924static inline int libipw_is_ofdm_rate(u8 rate)
7c254d3d 925{
b0a4e7d8
JL
926 switch (rate & ~LIBIPW_BASIC_RATE_MASK) {
927 case LIBIPW_OFDM_RATE_6MB:
928 case LIBIPW_OFDM_RATE_9MB:
929 case LIBIPW_OFDM_RATE_12MB:
930 case LIBIPW_OFDM_RATE_18MB:
931 case LIBIPW_OFDM_RATE_24MB:
932 case LIBIPW_OFDM_RATE_36MB:
933 case LIBIPW_OFDM_RATE_48MB:
934 case LIBIPW_OFDM_RATE_54MB:
7c254d3d
ID
935 return 1;
936 }
937 return 0;
938}
939
b0a4e7d8 940static inline int libipw_is_cck_rate(u8 rate)
7c254d3d 941{
b0a4e7d8
JL
942 switch (rate & ~LIBIPW_BASIC_RATE_MASK) {
943 case LIBIPW_CCK_RATE_1MB:
944 case LIBIPW_CCK_RATE_2MB:
945 case LIBIPW_CCK_RATE_5MB:
946 case LIBIPW_CCK_RATE_11MB:
7c254d3d
ID
947 return 1;
948 }
949 return 0;
950}
951
27ae60f8
PR
952/* libipw.c */
953extern void free_libipw(struct net_device *dev, int monitor);
954extern struct net_device *alloc_libipw(int sizeof_priv, int monitor);
b0a4e7d8 955extern int libipw_change_mtu(struct net_device *dev, int new_mtu);
b453872c 956
b0a4e7d8 957extern void libipw_networks_age(struct libipw_device *ieee,
c3d72b96
DW
958 unsigned long age_secs);
959
b0a4e7d8 960extern int libipw_set_encryption(struct libipw_device *ieee);
b453872c 961
b0a4e7d8 962/* libipw_tx.c */
d0cf9c0d
SH
963extern netdev_tx_t libipw_xmit(struct sk_buff *skb,
964 struct net_device *dev);
b0a4e7d8 965extern void libipw_txb_free(struct libipw_txb *);
b453872c 966
b0a4e7d8
JL
967/* libipw_rx.c */
968extern void libipw_rx_any(struct libipw_device *ieee,
969 struct sk_buff *skb, struct libipw_rx_stats *stats);
970extern int libipw_rx(struct libipw_device *ieee, struct sk_buff *skb,
971 struct libipw_rx_stats *rx_stats);
c9fa7d5d 972/* make sure to set stats->len */
b0a4e7d8
JL
973extern void libipw_rx_mgt(struct libipw_device *ieee,
974 struct libipw_hdr_4addr *header,
975 struct libipw_rx_stats *stats);
976extern void libipw_network_reset(struct libipw_network *network);
b453872c 977
b0a4e7d8
JL
978/* libipw_geo.c */
979extern const struct libipw_geo *libipw_get_geo(struct libipw_device
02cda6ae 980 *ieee);
9c033bed 981extern void libipw_set_geo(struct libipw_device *ieee,
b0a4e7d8 982 const struct libipw_geo *geo);
02cda6ae 983
b0a4e7d8 984extern int libipw_is_valid_channel(struct libipw_device *ieee,
02cda6ae 985 u8 channel);
b0a4e7d8 986extern int libipw_channel_to_index(struct libipw_device *ieee,
02cda6ae 987 u8 channel);
b0a4e7d8
JL
988extern u8 libipw_freq_to_channel(struct libipw_device *ieee, u32 freq);
989extern u8 libipw_get_channel_flags(struct libipw_device *ieee,
b79e20b6 990 u8 channel);
b0a4e7d8
JL
991extern const struct libipw_channel *libipw_get_channel(struct
992 libipw_device
b79e20b6 993 *ieee, u8 channel);
b0a4e7d8 994extern u32 libipw_channel_to_freq(struct libipw_device * ieee,
f5cdf306 995 u8 channel);
02cda6ae 996
b0a4e7d8
JL
997/* libipw_wx.c */
998extern int libipw_wx_get_scan(struct libipw_device *ieee,
b453872c
JG
999 struct iw_request_info *info,
1000 union iwreq_data *wrqu, char *key);
b0a4e7d8 1001extern int libipw_wx_set_encode(struct libipw_device *ieee,
b453872c
JG
1002 struct iw_request_info *info,
1003 union iwreq_data *wrqu, char *key);
b0a4e7d8 1004extern int libipw_wx_get_encode(struct libipw_device *ieee,
b453872c
JG
1005 struct iw_request_info *info,
1006 union iwreq_data *wrqu, char *key);
b0a4e7d8 1007extern int libipw_wx_set_encodeext(struct libipw_device *ieee,
e0d369d1
JK
1008 struct iw_request_info *info,
1009 union iwreq_data *wrqu, char *extra);
b0a4e7d8 1010extern int libipw_wx_get_encodeext(struct libipw_device *ieee,
e0d369d1
JK
1011 struct iw_request_info *info,
1012 union iwreq_data *wrqu, char *extra);
b453872c 1013
b0a4e7d8 1014static inline void libipw_increment_scans(struct libipw_device *ieee)
b453872c
JG
1015{
1016 ieee->scans++;
1017}
1018
b0a4e7d8 1019static inline int libipw_get_scans(struct libipw_device *ieee)
b453872c
JG
1020{
1021 return ieee->scans;
1022}
1023
b0a4e7d8 1024#endif /* LIBIPW_H */
This page took 1.382839 seconds and 5 git commands to generate.