Deleted Added
full compact
ieee80211_var.h (237214) ieee80211_var.h (241138)
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 237214 2012-06-18 02:08:04Z adrian $
26 * $FreeBSD: head/sys/net80211/ieee80211_var.h 241138 2012-10-02 17:45:19Z 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 */

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

481 void (*iv_bmiss)(struct ieee80211vap *);
482 /* reset device state after 802.11 parameter/state change */
483 int (*iv_reset)(struct ieee80211vap *, u_long);
484 /* [schedule] beacon frame update */
485 void (*iv_update_beacon)(struct ieee80211vap *, int);
486 /* power save handling */
487 void (*iv_update_ps)(struct ieee80211vap *, int);
488 int (*iv_set_tim)(struct ieee80211_node *, int);
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 */

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

481 void (*iv_bmiss)(struct ieee80211vap *);
482 /* reset device state after 802.11 parameter/state change */
483 int (*iv_reset)(struct ieee80211vap *, u_long);
484 /* [schedule] beacon frame update */
485 void (*iv_update_beacon)(struct ieee80211vap *, int);
486 /* power save handling */
487 void (*iv_update_ps)(struct ieee80211vap *, int);
488 int (*iv_set_tim)(struct ieee80211_node *, int);
489 void (*iv_node_ps)(struct ieee80211_node *, int);
490 void (*iv_sta_ps)(struct ieee80211vap *, int);
491 void (*iv_recv_pspoll)(struct ieee80211_node *,
492 struct mbuf *);
493
489 /* state machine processing */
490 int (*iv_newstate)(struct ieee80211vap *,
491 enum ieee80211_state, int);
492 /* 802.3 output method for raw frame xmit */
493 int (*iv_output)(struct ifnet *, struct mbuf *,
494 struct sockaddr *, struct route *);
495 uint64_t iv_spare[6];
496};

--- 451 unchanged lines hidden ---
494 /* state machine processing */
495 int (*iv_newstate)(struct ieee80211vap *,
496 enum ieee80211_state, int);
497 /* 802.3 output method for raw frame xmit */
498 int (*iv_output)(struct ifnet *, struct mbuf *,
499 struct sockaddr *, struct route *);
500 uint64_t iv_spare[6];
501};

--- 451 unchanged lines hidden ---