Deleted Added
full compact
ieee80211_var.h (249925) ieee80211_var.h (251766)
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2009 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-2009 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 249925 2013-04-26 12:50:32Z glebius $
26 * $FreeBSD: head/sys/net80211/ieee80211_var.h 251766 2013-06-14 23:04:31Z eadler $
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 */

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

50#include <net80211/ieee80211_ioctl.h> /* for ieee80211_stats */
51#include <net80211/ieee80211_phy.h>
52#include <net80211/ieee80211_power.h>
53#include <net80211/ieee80211_node.h>
54#include <net80211/ieee80211_proto.h>
55#include <net80211/ieee80211_radiotap.h>
56#include <net80211/ieee80211_scan.h>
57
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 */

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

50#include <net80211/ieee80211_ioctl.h> /* for ieee80211_stats */
51#include <net80211/ieee80211_phy.h>
52#include <net80211/ieee80211_power.h>
53#include <net80211/ieee80211_node.h>
54#include <net80211/ieee80211_proto.h>
55#include <net80211/ieee80211_radiotap.h>
56#include <net80211/ieee80211_scan.h>
57
58#define IEEE80211_TXPOWER_MAX 100 /* .5 dbM (XXX units?) */
58#define IEEE80211_TXPOWER_MAX 100 /* .5 dBm (XXX units?) */
59#define IEEE80211_TXPOWER_MIN 0 /* kill radio */
60
61#define IEEE80211_DTIM_DEFAULT 1 /* default DTIM period */
62#define IEEE80211_BINTVAL_DEFAULT 100 /* default beacon interval (TU's) */
63
64#define IEEE80211_BMISS_MAX 2 /* maximum consecutive bmiss allowed */
65#define IEEE80211_HWBMISS_DEFAULT 7 /* h/w bmiss threshold (beacons) */
66

--- 909 unchanged lines hidden ---
59#define IEEE80211_TXPOWER_MIN 0 /* kill radio */
60
61#define IEEE80211_DTIM_DEFAULT 1 /* default DTIM period */
62#define IEEE80211_BINTVAL_DEFAULT 100 /* default beacon interval (TU's) */
63
64#define IEEE80211_BMISS_MAX 2 /* maximum consecutive bmiss allowed */
65#define IEEE80211_HWBMISS_DEFAULT 7 /* h/w bmiss threshold (beacons) */
66

--- 909 unchanged lines hidden ---