Deleted Added
full compact
ieee80211_var.h (191148) ieee80211_var.h (191546)
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 191148 2009-04-16 20:30:28Z kmacy $
26 * $FreeBSD: head/sys/net80211/ieee80211_var.h 191546 2009-04-26 21:46:04Z 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 */

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

411 /* operate-mode detach hook */
412 void (*iv_opdetach)(struct ieee80211vap *);
413 /* receive processing */
414 int (*iv_input)(struct ieee80211_node *,
415 struct mbuf *, int rssi, int noise,
416 uint32_t rstamp);
417 void (*iv_recv_mgmt)(struct ieee80211_node *,
418 struct mbuf *, int, int, int, uint32_t);
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 */

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

411 /* operate-mode detach hook */
412 void (*iv_opdetach)(struct ieee80211vap *);
413 /* receive processing */
414 int (*iv_input)(struct ieee80211_node *,
415 struct mbuf *, int rssi, int noise,
416 uint32_t rstamp);
417 void (*iv_recv_mgmt)(struct ieee80211_node *,
418 struct mbuf *, int, int, int, uint32_t);
419 void (*iv_recv_ctl)(struct ieee80211_node *,
420 struct mbuf *, int);
419 void (*iv_deliver_data)(struct ieee80211vap *,
420 struct ieee80211_node *, struct mbuf *);
421#if 0
422 /* send processing */
423 int (*iv_send_mgmt)(struct ieee80211_node *,
424 int, int);
425#endif
426 /* beacon miss processing */

--- 394 unchanged lines hidden ---
421 void (*iv_deliver_data)(struct ieee80211vap *,
422 struct ieee80211_node *, struct mbuf *);
423#if 0
424 /* send processing */
425 int (*iv_send_mgmt)(struct ieee80211_node *,
426 int, int);
427#endif
428 /* beacon miss processing */

--- 394 unchanged lines hidden ---