Deleted Added
full compact
ieee80211_var.h (184280) ieee80211_var.h (184288)
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2008 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:

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

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2008 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:

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

18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/net80211/ieee80211_var.h 184280 2008-10-25 23:58:59Z sam $
26 * $FreeBSD: head/sys/net80211/ieee80211_var.h 184288 2008-10-26 01:04:46Z sam $
27 */
28#ifndef _NET80211_IEEE80211_VAR_H_
29#define _NET80211_IEEE80211_VAR_H_
30
31/*
32 * Definitions for IEEE 802.11 drivers.
33 */
34/* NB: portability glue must go first */

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

42#error "No support for your operating system!"
43#endif
44
45#include <net80211/_ieee80211.h>
46#include <net80211/ieee80211.h>
47#include <net80211/ieee80211_crypto.h>
48#include <net80211/ieee80211_dfs.h>
49#include <net80211/ieee80211_ioctl.h> /* for ieee80211_stats */
27 */
28#ifndef _NET80211_IEEE80211_VAR_H_
29#define _NET80211_IEEE80211_VAR_H_
30
31/*
32 * Definitions for IEEE 802.11 drivers.
33 */
34/* NB: portability glue must go first */

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

42#error "No support for your operating system!"
43#endif
44
45#include <net80211/_ieee80211.h>
46#include <net80211/ieee80211.h>
47#include <net80211/ieee80211_crypto.h>
48#include <net80211/ieee80211_dfs.h>
49#include <net80211/ieee80211_ioctl.h> /* for ieee80211_stats */
50#include <net80211/ieee80211_node.h>
51#include <net80211/ieee80211_power.h>
50#include <net80211/ieee80211_power.h>
51#include <net80211/ieee80211_node.h>
52#include <net80211/ieee80211_proto.h>
53#include <net80211/ieee80211_scan.h>
54
55#define IEEE80211_TXPOWER_MAX 100 /* .5 dbM (XXX units?) */
56#define IEEE80211_TXPOWER_MIN 0 /* kill radio */
57
58#define IEEE80211_DTIM_DEFAULT 1 /* default DTIM period */
59#define IEEE80211_BINTVAL_DEFAULT 100 /* default beacon interval (TU's) */

--- 706 unchanged lines hidden ---
52#include <net80211/ieee80211_proto.h>
53#include <net80211/ieee80211_scan.h>
54
55#define IEEE80211_TXPOWER_MAX 100 /* .5 dbM (XXX units?) */
56#define IEEE80211_TXPOWER_MIN 0 /* kill radio */
57
58#define IEEE80211_DTIM_DEFAULT 1 /* default DTIM period */
59#define IEEE80211_BINTVAL_DEFAULT 100 /* default beacon interval (TU's) */

--- 706 unchanged lines hidden ---