Deleted Added
full compact
ieee80211_var.h (153349) ieee80211_var.h (153421)
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 153349 2005-12-12 18:04:44Z sam $
32 * $FreeBSD: head/sys/net80211/ieee80211_var.h 153421 2005-12-14 19:32:53Z 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

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

207
208#define IEEE80211_ADDR_EQ(a1,a2) (memcmp(a1,a2,IEEE80211_ADDR_LEN) == 0)
209#define IEEE80211_ADDR_COPY(dst,src) memcpy(dst,src,IEEE80211_ADDR_LEN)
210
211/* ic_flags */
212/* NB: bits 0x4c available */
213#define IEEE80211_F_FF 0x00000001 /* CONF: ATH FF enabled */
214#define IEEE80211_F_TURBOP 0x00000002 /* CONF: ATH Turbo enabled*/
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

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

207
208#define IEEE80211_ADDR_EQ(a1,a2) (memcmp(a1,a2,IEEE80211_ADDR_LEN) == 0)
209#define IEEE80211_ADDR_COPY(dst,src) memcpy(dst,src,IEEE80211_ADDR_LEN)
210
211/* ic_flags */
212/* NB: bits 0x4c available */
213#define IEEE80211_F_FF 0x00000001 /* CONF: ATH FF enabled */
214#define IEEE80211_F_TURBOP 0x00000002 /* CONF: ATH Turbo enabled*/
215#define IEEE80211_F_BURST 0x00000004 /* CONF: bursting enabled */
215/* NB: this is intentionally setup to be IEEE80211_CAPINFO_PRIVACY */
216#define IEEE80211_F_PRIVACY 0x00000010 /* CONF: privacy enabled */
217#define IEEE80211_F_PUREG 0x00000020 /* CONF: 11g w/o 11b sta's */
218#define IEEE80211_F_SCAN 0x00000080 /* STATUS: scanning */
219#define IEEE80211_F_ASCAN 0x00000100 /* STATUS: active scan */
220#define IEEE80211_F_SIBSS 0x00000200 /* STATUS: start IBSS */
221/* NB: this is intentionally setup to be IEEE80211_CAPINFO_SHORT_SLOTTIME */
222#define IEEE80211_F_SHSLOT 0x00000400 /* STATUS: use short slot time*/

--- 199 unchanged lines hidden ---
216/* NB: this is intentionally setup to be IEEE80211_CAPINFO_PRIVACY */
217#define IEEE80211_F_PRIVACY 0x00000010 /* CONF: privacy enabled */
218#define IEEE80211_F_PUREG 0x00000020 /* CONF: 11g w/o 11b sta's */
219#define IEEE80211_F_SCAN 0x00000080 /* STATUS: scanning */
220#define IEEE80211_F_ASCAN 0x00000100 /* STATUS: active scan */
221#define IEEE80211_F_SIBSS 0x00000200 /* STATUS: start IBSS */
222/* NB: this is intentionally setup to be IEEE80211_CAPINFO_SHORT_SLOTTIME */
223#define IEEE80211_F_SHSLOT 0x00000400 /* STATUS: use short slot time*/

--- 199 unchanged lines hidden ---