Deleted Added
full compact
ieee80211_var.h (222162) ieee80211_var.h (223331)
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 222162 2011-05-21 16:41:41Z bschmidt $
26 * $FreeBSD: head/sys/net80211/ieee80211_var.h 223331 2011-06-20 11:46:03Z adrian $
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 */

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

302 struct ieee80211_tx_ampdu *,
303 int dialogtoken, int baparamset,
304 int batimeout);
305 int (*ic_addba_response)(struct ieee80211_node *,
306 struct ieee80211_tx_ampdu *,
307 int status, int baparamset, int batimeout);
308 void (*ic_addba_stop)(struct ieee80211_node *,
309 struct ieee80211_tx_ampdu *);
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 */

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

302 struct ieee80211_tx_ampdu *,
303 int dialogtoken, int baparamset,
304 int batimeout);
305 int (*ic_addba_response)(struct ieee80211_node *,
306 struct ieee80211_tx_ampdu *,
307 int status, int baparamset, int batimeout);
308 void (*ic_addba_stop)(struct ieee80211_node *,
309 struct ieee80211_tx_ampdu *);
310 void (*ic_addba_response_timeout)(struct ieee80211_node *,
311 struct ieee80211_tx_ampdu *);
310 /* BAR response received */
311 void (*ic_bar_response)(struct ieee80211_node *,
312 struct ieee80211_tx_ampdu *, int status);
313 /* start/stop doing A-MPDU rx processing for a station */
314 int (*ic_ampdu_rx_start)(struct ieee80211_node *,
315 struct ieee80211_rx_ampdu *, int baparamset,
316 int batimeout, int baseqctl);
317 void (*ic_ampdu_rx_stop)(struct ieee80211_node *,

--- 607 unchanged lines hidden ---
312 /* BAR response received */
313 void (*ic_bar_response)(struct ieee80211_node *,
314 struct ieee80211_tx_ampdu *, int status);
315 /* start/stop doing A-MPDU rx processing for a station */
316 int (*ic_ampdu_rx_start)(struct ieee80211_node *,
317 struct ieee80211_rx_ampdu *, int baparamset,
318 int batimeout, int baseqctl);
319 void (*ic_ampdu_rx_stop)(struct ieee80211_node *,

--- 607 unchanged lines hidden ---