Deleted Added
full compact
ieee80211_var.h (140754) ieee80211_var.h (147152)
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 15 unchanged lines hidden (view full) ---

24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
4 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
8 * are met:

--- 15 unchanged lines hidden (view full) ---

24 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
25 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
26 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
30 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 * $FreeBSD: head/sys/net80211/ieee80211_var.h 140754 2005-01-24 19:39:07Z sam $
32 * $FreeBSD: head/sys/net80211/ieee80211_var.h 147152 2005-06-09 04:05:43Z sam $
33 */
34#ifndef _NET80211_IEEE80211_VAR_H_
35#define _NET80211_IEEE80211_VAR_H_
36
37/*
38 * Definitions for IEEE 802.11 drivers.
39 */
40#define IEEE80211_DEBUG

--- 79 unchanged lines hidden (view full) ---

120 struct ieee80211_node_table ic_sta; /* stations/neighbors */
121 u_int32_t *ic_aid_bitmap; /* association id map */
122 u_int16_t ic_max_aid;
123 u_int16_t ic_sta_assoc; /* stations associated */
124 u_int16_t ic_ps_sta; /* stations in power save */
125 u_int16_t ic_ps_pending; /* ps sta's w/ pending frames */
126 u_int8_t *ic_tim_bitmap; /* power-save stations w/ data*/
127 u_int16_t ic_tim_len; /* ic_tim_bitmap size (bytes) */
33 */
34#ifndef _NET80211_IEEE80211_VAR_H_
35#define _NET80211_IEEE80211_VAR_H_
36
37/*
38 * Definitions for IEEE 802.11 drivers.
39 */
40#define IEEE80211_DEBUG

--- 79 unchanged lines hidden (view full) ---

120 struct ieee80211_node_table ic_sta; /* stations/neighbors */
121 u_int32_t *ic_aid_bitmap; /* association id map */
122 u_int16_t ic_max_aid;
123 u_int16_t ic_sta_assoc; /* stations associated */
124 u_int16_t ic_ps_sta; /* stations in power save */
125 u_int16_t ic_ps_pending; /* ps sta's w/ pending frames */
126 u_int8_t *ic_tim_bitmap; /* power-save stations w/ data*/
127 u_int16_t ic_tim_len; /* ic_tim_bitmap size (bytes) */
128 u_int16_t ic_dtim_period; /* DTIM period */
128 u_int8_t ic_dtim_period; /* DTIM period */
129 u_int8_t ic_dtim_count; /* DTIM count for last bcn */
129 struct ifmedia ic_media; /* interface media config */
130 struct bpf_if *ic_rawbpf; /* packet filter structure */
131 struct ieee80211_node *ic_bss; /* information for this node */
132 struct ieee80211_channel *ic_ibss_chan;
133 int ic_fixed_rate; /* index to ic_sup_rates[] */
134 u_int16_t ic_rtsthreshold;
135 u_int16_t ic_fragthreshold;
136 struct ieee80211_node *(*ic_node_alloc)(struct ieee80211_node_table*);

--- 229 unchanged lines hidden ---
130 struct ifmedia ic_media; /* interface media config */
131 struct bpf_if *ic_rawbpf; /* packet filter structure */
132 struct ieee80211_node *ic_bss; /* information for this node */
133 struct ieee80211_channel *ic_ibss_chan;
134 int ic_fixed_rate; /* index to ic_sup_rates[] */
135 u_int16_t ic_rtsthreshold;
136 u_int16_t ic_fragthreshold;
137 struct ieee80211_node *(*ic_node_alloc)(struct ieee80211_node_table*);

--- 229 unchanged lines hidden ---