Deleted Added
full compact
ieee80211_var.h (187797) ieee80211_var.h (187800)
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 187797 2009-01-27 23:00:38Z sam $
26 * $FreeBSD: head/sys/net80211/ieee80211_var.h 187800 2009-01-27 23:19:36Z 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 */

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

203 int opmode, int flags,
204 const uint8_t bssid[IEEE80211_ADDR_LEN],
205 const uint8_t macaddr[IEEE80211_ADDR_LEN]);
206 void (*ic_vap_delete)(struct ieee80211vap *);
207 /* operating mode attachment */
208 ieee80211vap_attach ic_vattach[IEEE80211_OPMODE_MAX];
209 /* return hardware/radio capabilities */
210 void (*ic_getradiocaps)(struct ieee80211com *,
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 */

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

203 int opmode, int flags,
204 const uint8_t bssid[IEEE80211_ADDR_LEN],
205 const uint8_t macaddr[IEEE80211_ADDR_LEN]);
206 void (*ic_vap_delete)(struct ieee80211vap *);
207 /* operating mode attachment */
208 ieee80211vap_attach ic_vattach[IEEE80211_OPMODE_MAX];
209 /* return hardware/radio capabilities */
210 void (*ic_getradiocaps)(struct ieee80211com *,
211 int *, struct ieee80211_channel []);
211 int, int *, struct ieee80211_channel []);
212 /* check and/or prepare regdomain state change */
213 int (*ic_setregdomain)(struct ieee80211com *,
214 struct ieee80211_regdomain *,
215 int, struct ieee80211_channel []);
216 /* send/recv 802.11 management frame */
217 int (*ic_send_mgmt)(struct ieee80211_node *,
218 int, int);
219 /* send raw 802.11 frame */

--- 588 unchanged lines hidden ---
212 /* check and/or prepare regdomain state change */
213 int (*ic_setregdomain)(struct ieee80211com *,
214 struct ieee80211_regdomain *,
215 int, struct ieee80211_channel []);
216 /* send/recv 802.11 management frame */
217 int (*ic_send_mgmt)(struct ieee80211_node *,
218 int, int);
219 /* send raw 802.11 frame */

--- 588 unchanged lines hidden ---