Deleted Added
full compact
ieee80211_proto.h (192468) ieee80211_proto.h (193239)
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_proto.h 192468 2009-05-20 20:00:40Z sam $
26 * $FreeBSD: head/sys/net80211/ieee80211_proto.h 193239 2009-06-01 16:36:28Z sam $
27 */
28#ifndef _NET80211_IEEE80211_PROTO_H_
29#define _NET80211_IEEE80211_PROTO_H_
30
31/*
32 * 802.11 protocol implementation definitions.
33 */
34

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

300 uint16_t bo_tim_trailer_len;/* tim trailer length in bytes */
301 uint8_t *bo_erp; /* start of ERP element */
302 uint8_t *bo_htinfo; /* start of HT info element */
303 uint8_t *bo_ath; /* start of ATH parameters */
304 uint8_t *bo_appie; /* start of AppIE element */
305 uint16_t bo_appie_len; /* AppIE length in bytes */
306 uint16_t bo_csa_trailer_len;;
307 uint8_t *bo_csa; /* start of CSA element */
27 */
28#ifndef _NET80211_IEEE80211_PROTO_H_
29#define _NET80211_IEEE80211_PROTO_H_
30
31/*
32 * 802.11 protocol implementation definitions.
33 */
34

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

300 uint16_t bo_tim_trailer_len;/* tim trailer length in bytes */
301 uint8_t *bo_erp; /* start of ERP element */
302 uint8_t *bo_htinfo; /* start of HT info element */
303 uint8_t *bo_ath; /* start of ATH parameters */
304 uint8_t *bo_appie; /* start of AppIE element */
305 uint16_t bo_appie_len; /* AppIE length in bytes */
306 uint16_t bo_csa_trailer_len;;
307 uint8_t *bo_csa; /* start of CSA element */
308 uint8_t *bo_spare[4];
308};
309struct mbuf *ieee80211_beacon_alloc(struct ieee80211_node *,
310 struct ieee80211_beacon_offsets *);
311
312/*
313 * Beacon frame updates are signaled through calls to iv_update_beacon
314 * with one of the IEEE80211_BEACON_* tokens defined below. For devices
315 * that construct beacon frames on the host this can trigger a rebuild

--- 56 unchanged lines hidden ---
309};
310struct mbuf *ieee80211_beacon_alloc(struct ieee80211_node *,
311 struct ieee80211_beacon_offsets *);
312
313/*
314 * Beacon frame updates are signaled through calls to iv_update_beacon
315 * with one of the IEEE80211_BEACON_* tokens defined below. For devices
316 * that construct beacon frames on the host this can trigger a rebuild

--- 56 unchanged lines hidden ---