Deleted Added
full compact
ieee80211_var.h (188556) ieee80211_var.h (189980)
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 188556 2009-02-13 05:31:18Z sam $
26 * $FreeBSD: head/sys/net80211/ieee80211_var.h 189980 2009-03-18 19:28:17Z 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 */

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

224 /* handle multicast state changes */
225 void (*ic_update_mcast)(struct ifnet *);
226 /* handle promiscuous mode changes */
227 void (*ic_update_promisc)(struct ifnet *);
228 /* new station association callback/notification */
229 void (*ic_newassoc)(struct ieee80211_node *, int);
230 /* TDMA update notification */
231 void (*ic_tdma_update)(struct ieee80211_node *,
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 */

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

224 /* handle multicast state changes */
225 void (*ic_update_mcast)(struct ifnet *);
226 /* handle promiscuous mode changes */
227 void (*ic_update_promisc)(struct ifnet *);
228 /* new station association callback/notification */
229 void (*ic_newassoc)(struct ieee80211_node *, int);
230 /* TDMA update notification */
231 void (*ic_tdma_update)(struct ieee80211_node *,
232 const struct ieee80211_tdma_param *);
232 const struct ieee80211_tdma_param *, int);
233 /* node state management */
234 struct ieee80211_node* (*ic_node_alloc)(struct ieee80211vap *,
235 const uint8_t [IEEE80211_ADDR_LEN]);
236 void (*ic_node_free)(struct ieee80211_node *);
237 void (*ic_node_cleanup)(struct ieee80211_node *);
238 void (*ic_node_age)(struct ieee80211_node *);
239 void (*ic_node_drain)(struct ieee80211_node *);
240 int8_t (*ic_node_getrssi)(const struct ieee80211_node*);

--- 566 unchanged lines hidden ---
233 /* node state management */
234 struct ieee80211_node* (*ic_node_alloc)(struct ieee80211vap *,
235 const uint8_t [IEEE80211_ADDR_LEN]);
236 void (*ic_node_free)(struct ieee80211_node *);
237 void (*ic_node_cleanup)(struct ieee80211_node *);
238 void (*ic_node_age)(struct ieee80211_node *);
239 void (*ic_node_drain)(struct ieee80211_node *);
240 int8_t (*ic_node_getrssi)(const struct ieee80211_node*);

--- 566 unchanged lines hidden ---