Deleted Added
full compact
ieee80211_node.h (231939) ieee80211_node.h (233452)
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_node.h 231939 2012-02-20 15:05:21Z ray $
26 * $FreeBSD: head/sys/net80211/ieee80211_node.h 233452 2012-03-25 03:11:57Z adrian $
27 */
28#ifndef _NET80211_IEEE80211_NODE_H_
29#define _NET80211_IEEE80211_NODE_H_
30
31#include <net80211/ieee80211_ioctl.h> /* for ieee80211_nodestats */
32#include <net80211/ieee80211_ht.h> /* for aggregation state */
33
34/*

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

319void ieee80211_node_set_chan(struct ieee80211_node *,
320 struct ieee80211_channel *);
321void ieee80211_create_ibss(struct ieee80211vap*, struct ieee80211_channel *);
322void ieee80211_reset_bss(struct ieee80211vap *);
323void ieee80211_sync_curchan(struct ieee80211com *);
324void ieee80211_setupcurchan(struct ieee80211com *,
325 struct ieee80211_channel *);
326void ieee80211_setcurchan(struct ieee80211com *, struct ieee80211_channel *);
27 */
28#ifndef _NET80211_IEEE80211_NODE_H_
29#define _NET80211_IEEE80211_NODE_H_
30
31#include <net80211/ieee80211_ioctl.h> /* for ieee80211_nodestats */
32#include <net80211/ieee80211_ht.h> /* for aggregation state */
33
34/*

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

319void ieee80211_node_set_chan(struct ieee80211_node *,
320 struct ieee80211_channel *);
321void ieee80211_create_ibss(struct ieee80211vap*, struct ieee80211_channel *);
322void ieee80211_reset_bss(struct ieee80211vap *);
323void ieee80211_sync_curchan(struct ieee80211com *);
324void ieee80211_setupcurchan(struct ieee80211com *,
325 struct ieee80211_channel *);
326void ieee80211_setcurchan(struct ieee80211com *, struct ieee80211_channel *);
327void ieee80211_update_chw(struct ieee80211com *);
327int ieee80211_ibss_merge(struct ieee80211_node *);
328struct ieee80211_scan_entry;
329int ieee80211_sta_join(struct ieee80211vap *, struct ieee80211_channel *,
330 const struct ieee80211_scan_entry *);
331void ieee80211_sta_leave(struct ieee80211_node *);
332void ieee80211_node_deauth(struct ieee80211_node *, int);
333
334int ieee80211_ies_init(struct ieee80211_ies *, const uint8_t *, int);

--- 127 unchanged lines hidden ---
328int ieee80211_ibss_merge(struct ieee80211_node *);
329struct ieee80211_scan_entry;
330int ieee80211_sta_join(struct ieee80211vap *, struct ieee80211_channel *,
331 const struct ieee80211_scan_entry *);
332void ieee80211_sta_leave(struct ieee80211_node *);
333void ieee80211_node_deauth(struct ieee80211_node *, int);
334
335int ieee80211_ies_init(struct ieee80211_ies *, const uint8_t *, int);

--- 127 unchanged lines hidden ---