ieee80211_node.h revision 1.13.2.8 1 1.13.2.8 christos /* $NetBSD: ieee80211_node.h,v 1.13.2.8 2005/12/11 10:29:22 christos Exp $ */
2 1.13.2.2 skrll /*-
3 1.13.2.2 skrll * Copyright (c) 2001 Atsushi Onoe
4 1.13.2.7 skrll * Copyright (c) 2002-2005 Sam Leffler, Errno Consulting
5 1.13.2.2 skrll * All rights reserved.
6 1.13.2.2 skrll *
7 1.13.2.2 skrll * Redistribution and use in source and binary forms, with or without
8 1.13.2.2 skrll * modification, are permitted provided that the following conditions
9 1.13.2.2 skrll * are met:
10 1.13.2.2 skrll * 1. Redistributions of source code must retain the above copyright
11 1.13.2.2 skrll * notice, this list of conditions and the following disclaimer.
12 1.13.2.2 skrll * 2. Redistributions in binary form must reproduce the above copyright
13 1.13.2.2 skrll * notice, this list of conditions and the following disclaimer in the
14 1.13.2.2 skrll * documentation and/or other materials provided with the distribution.
15 1.13.2.2 skrll * 3. The name of the author may not be used to endorse or promote products
16 1.13.2.2 skrll * derived from this software without specific prior written permission.
17 1.13.2.2 skrll *
18 1.13.2.2 skrll * Alternatively, this software may be distributed under the terms of the
19 1.13.2.2 skrll * GNU General Public License ("GPL") version 2 as published by the Free
20 1.13.2.2 skrll * Software Foundation.
21 1.13.2.2 skrll *
22 1.13.2.2 skrll * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
23 1.13.2.2 skrll * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 1.13.2.2 skrll * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
25 1.13.2.2 skrll * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
26 1.13.2.2 skrll * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
27 1.13.2.2 skrll * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 1.13.2.2 skrll * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 1.13.2.2 skrll * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 1.13.2.2 skrll * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
31 1.13.2.2 skrll * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32 1.13.2.2 skrll *
33 1.13.2.8 christos * $FreeBSD: src/sys/net80211/ieee80211_node.h,v 1.22 2005/08/10 16:22:29 sam Exp $
34 1.13.2.2 skrll */
35 1.13.2.2 skrll #ifndef _NET80211_IEEE80211_NODE_H_
36 1.13.2.2 skrll #define _NET80211_IEEE80211_NODE_H_
37 1.13.2.2 skrll
38 1.13.2.7 skrll #include <net80211/ieee80211_netbsd.h>
39 1.13.2.7 skrll #include <net80211/ieee80211_ioctl.h> /* for ieee80211_nodestats */
40 1.13.2.7 skrll
41 1.13.2.7 skrll /*
42 1.13.2.7 skrll * Each ieee80211com instance has a single timer that fires once a
43 1.13.2.7 skrll * second. This is used to initiate various work depending on the
44 1.13.2.7 skrll * state of the instance: scanning (passive or active), ``transition''
45 1.13.2.7 skrll * (waiting for a response to a management frame when operating
46 1.13.2.7 skrll * as a station), and node inactivity processing (when operating
47 1.13.2.7 skrll * as an AP). For inactivity processing each node has a timeout
48 1.13.2.7 skrll * set in it's ni_inact field that is decremented on each timeout
49 1.13.2.7 skrll * and the node is reclaimed when the counter goes to zero. We
50 1.13.2.7 skrll * use different inactivity timeout values depending on whether
51 1.13.2.7 skrll * the node is associated and authorized (either by 802.1x or
52 1.13.2.7 skrll * open/shared key authentication) or associated but yet to be
53 1.13.2.7 skrll * authorized. The latter timeout is shorter to more aggressively
54 1.13.2.7 skrll * reclaim nodes that leave part way through the 802.1x exchange.
55 1.13.2.7 skrll */
56 1.13.2.7 skrll #define IEEE80211_INACT_WAIT 15 /* inactivity interval (secs) */
57 1.13.2.7 skrll #define IEEE80211_INACT_INIT (30/IEEE80211_INACT_WAIT) /* initial */
58 1.13.2.7 skrll #define IEEE80211_INACT_AUTH (180/IEEE80211_INACT_WAIT) /* associated but not authorized */
59 1.13.2.7 skrll #define IEEE80211_INACT_RUN (300/IEEE80211_INACT_WAIT) /* authorized */
60 1.13.2.7 skrll #define IEEE80211_INACT_PROBE (30/IEEE80211_INACT_WAIT) /* probe */
61 1.13.2.7 skrll #define IEEE80211_INACT_SCAN (300/IEEE80211_INACT_WAIT) /* scanned */
62 1.13.2.7 skrll
63 1.13.2.7 skrll #define IEEE80211_TRANS_WAIT 5 /* mgt frame tx timer (secs) */
64 1.13.2.2 skrll
65 1.13.2.2 skrll #define IEEE80211_NODE_HASHSIZE 32
66 1.13.2.2 skrll /* simple hash is enough for variation of macaddr */
67 1.13.2.2 skrll #define IEEE80211_NODE_HASH(addr) \
68 1.13.2.7 skrll (((const u_int8_t *)(addr))[IEEE80211_ADDR_LEN - 1] % \
69 1.13.2.7 skrll IEEE80211_NODE_HASHSIZE)
70 1.13.2.2 skrll
71 1.13.2.7 skrll struct ieee80211_rsnparms {
72 1.13.2.7 skrll u_int8_t rsn_mcastcipher; /* mcast/group cipher */
73 1.13.2.7 skrll u_int8_t rsn_mcastkeylen; /* mcast key length */
74 1.13.2.7 skrll u_int8_t rsn_ucastcipherset; /* unicast cipher set */
75 1.13.2.7 skrll u_int8_t rsn_ucastcipher; /* selected unicast cipher */
76 1.13.2.7 skrll u_int8_t rsn_ucastkeylen; /* unicast key length */
77 1.13.2.7 skrll u_int8_t rsn_keymgmtset; /* key mangement algorithms */
78 1.13.2.7 skrll u_int8_t rsn_keymgmt; /* selected key mgmt algo */
79 1.13.2.7 skrll u_int16_t rsn_caps; /* capabilities */
80 1.13.2.2 skrll };
81 1.13.2.2 skrll
82 1.13.2.7 skrll struct ieee80211_node_table;
83 1.13.2.7 skrll struct ieee80211com;
84 1.13.2.3 skrll
85 1.13.2.2 skrll /*
86 1.13.2.2 skrll * Node specific information. Note that drivers are expected
87 1.13.2.2 skrll * to derive from this structure to add device-specific per-node
88 1.13.2.2 skrll * state. This is done by overriding the ic_node_* methods in
89 1.13.2.2 skrll * the ieee80211com structure.
90 1.13.2.2 skrll */
91 1.13.2.2 skrll struct ieee80211_node {
92 1.13.2.7 skrll struct ieee80211com *ni_ic;
93 1.13.2.7 skrll struct ieee80211_node_table *ni_table;
94 1.13.2.2 skrll TAILQ_ENTRY(ieee80211_node) ni_list;
95 1.13.2.2 skrll LIST_ENTRY(ieee80211_node) ni_hash;
96 1.13.2.2 skrll u_int ni_refcnt;
97 1.13.2.2 skrll u_int ni_scangen; /* gen# for timeout scan */
98 1.13.2.7 skrll u_int8_t ni_authmode; /* authentication algorithm */
99 1.13.2.7 skrll u_int16_t ni_flags; /* special-purpose state */
100 1.13.2.7 skrll #define IEEE80211_NODE_AUTH 0x0001 /* authorized for data */
101 1.13.2.7 skrll #define IEEE80211_NODE_QOS 0x0002 /* QoS enabled */
102 1.13.2.7 skrll #define IEEE80211_NODE_ERP 0x0004 /* ERP enabled */
103 1.13.2.7 skrll /* NB: this must have the same value as IEEE80211_FC1_PWR_MGT */
104 1.13.2.7 skrll #define IEEE80211_NODE_PWR_MGT 0x0010 /* power save mode enabled */
105 1.13.2.7 skrll #define IEEE80211_NODE_AREF 0x0020 /* authentication ref held */
106 1.13.2.7 skrll u_int16_t ni_associd; /* assoc response */
107 1.13.2.7 skrll u_int16_t ni_txpower; /* current transmit power */
108 1.13.2.7 skrll u_int16_t ni_vlan; /* vlan tag */
109 1.13.2.7 skrll u_int32_t *ni_challenge; /* shared-key challenge */
110 1.13.2.7 skrll u_int8_t *ni_wpa_ie; /* captured WPA/RSN ie */
111 1.13.2.7 skrll u_int8_t *ni_wme_ie; /* captured WME ie */
112 1.13.2.7 skrll u_int16_t ni_txseqs[17]; /* tx seq per-tid */
113 1.13.2.7 skrll u_int16_t ni_rxseqs[17]; /* rx seq previous per-tid*/
114 1.13.2.7 skrll u_int32_t ni_rxfragstamp; /* time stamp of last rx frag */
115 1.13.2.7 skrll struct mbuf *ni_rxfrag[3]; /* rx frag reassembly */
116 1.13.2.7 skrll struct ieee80211_rsnparms ni_rsn; /* RSN/WPA parameters */
117 1.13.2.7 skrll struct ieee80211_key ni_ucastkey; /* unicast key */
118 1.13.2.2 skrll
119 1.13.2.2 skrll /* hardware */
120 1.13.2.2 skrll u_int32_t ni_rstamp; /* recv timestamp */
121 1.13.2.2 skrll u_int8_t ni_rssi; /* recv ssi */
122 1.13.2.2 skrll
123 1.13.2.2 skrll /* header */
124 1.13.2.2 skrll u_int8_t ni_macaddr[IEEE80211_ADDR_LEN];
125 1.13.2.2 skrll u_int8_t ni_bssid[IEEE80211_ADDR_LEN];
126 1.13.2.2 skrll
127 1.13.2.2 skrll /* beacon, probe response */
128 1.13.2.6 skrll union {
129 1.13.2.7 skrll u_int8_t data[8];
130 1.13.2.7 skrll u_int64_t tsf;
131 1.13.2.7 skrll } ni_tstamp; /* from last rcv'd beacon */
132 1.13.2.2 skrll u_int16_t ni_intval; /* beacon interval */
133 1.13.2.2 skrll u_int16_t ni_capinfo; /* capabilities */
134 1.13.2.2 skrll u_int8_t ni_esslen;
135 1.13.2.2 skrll u_int8_t ni_essid[IEEE80211_NWID_LEN];
136 1.13.2.2 skrll struct ieee80211_rateset ni_rates; /* negotiated rate set */
137 1.13.2.8 christos struct ieee80211_channel *ni_chan; /* XXX multiple uses */
138 1.13.2.2 skrll u_int16_t ni_fhdwell; /* FH only */
139 1.13.2.2 skrll u_int8_t ni_fhindex; /* FH only */
140 1.13.2.7 skrll u_int8_t ni_erp; /* ERP from beacon/probe resp */
141 1.13.2.7 skrll u_int16_t ni_timoff; /* byte offset to TIM ie */
142 1.13.2.7 skrll u_int8_t ni_dtim_period; /* DTIM period */
143 1.13.2.7 skrll u_int8_t ni_dtim_count; /* DTIM count for last bcn */
144 1.13.2.2 skrll
145 1.13.2.2 skrll /* others */
146 1.13.2.2 skrll int ni_fails; /* failure count to associate */
147 1.13.2.7 skrll short ni_inact; /* inactivity mark count */
148 1.13.2.7 skrll short ni_inact_reload;/* inactivity reload value */
149 1.13.2.2 skrll int ni_txrate; /* index to ni_rates[] */
150 1.13.2.7 skrll struct ifqueue ni_savedq; /* ps-poll queue */
151 1.13.2.7 skrll struct ieee80211_nodestats ni_stats; /* per-node statistics */
152 1.13.2.2 skrll };
153 1.13.2.7 skrll #ifdef _KERNEL
154 1.13.2.7 skrll MALLOC_DECLARE(M_80211_NODE);
155 1.13.2.7 skrll #endif /* _KERNEL */
156 1.13.2.2 skrll
157 1.13.2.7 skrll #define IEEE80211_NODE_AID(ni) IEEE80211_AID(ni->ni_associd)
158 1.13.2.2 skrll
159 1.13.2.7 skrll #define IEEE80211_NODE_STAT(ni,stat) (ni->ni_stats.ns_##stat++)
160 1.13.2.7 skrll #define IEEE80211_NODE_STAT_ADD(ni,stat,v) (ni->ni_stats.ns_##stat += v)
161 1.13.2.7 skrll #define IEEE80211_NODE_STAT_SET(ni,stat,v) (ni->ni_stats.ns_##stat = v)
162 1.13.2.2 skrll
163 1.13.2.2 skrll static __inline struct ieee80211_node *
164 1.13.2.2 skrll ieee80211_ref_node(struct ieee80211_node *ni)
165 1.13.2.2 skrll {
166 1.13.2.2 skrll ieee80211_node_incref(ni);
167 1.13.2.2 skrll return ni;
168 1.13.2.2 skrll }
169 1.13.2.2 skrll
170 1.13.2.2 skrll static __inline void
171 1.13.2.2 skrll ieee80211_unref_node(struct ieee80211_node **ni)
172 1.13.2.2 skrll {
173 1.13.2.2 skrll ieee80211_node_decref(*ni);
174 1.13.2.2 skrll *ni = NULL; /* guard against use */
175 1.13.2.2 skrll }
176 1.13.2.2 skrll
177 1.13.2.2 skrll struct ieee80211com;
178 1.13.2.2 skrll
179 1.13.2.7 skrll void ieee80211_node_attach(struct ieee80211com *);
180 1.13.2.7 skrll void ieee80211_node_lateattach(struct ieee80211com *);
181 1.13.2.7 skrll void ieee80211_node_detach(struct ieee80211com *);
182 1.13.2.2 skrll
183 1.13.2.7 skrll static __inline int
184 1.13.2.7 skrll ieee80211_node_is_authorized(const struct ieee80211_node *ni)
185 1.13.2.7 skrll {
186 1.13.2.7 skrll return (ni->ni_flags & IEEE80211_NODE_AUTH);
187 1.13.2.7 skrll }
188 1.13.2.7 skrll
189 1.13.2.8 christos void ieee80211_node_authorize(struct ieee80211_node *);
190 1.13.2.8 christos void ieee80211_node_unauthorize(struct ieee80211_node *);
191 1.13.2.7 skrll
192 1.13.2.7 skrll void ieee80211_begin_scan(struct ieee80211com *, int);
193 1.13.2.7 skrll int ieee80211_next_scan(struct ieee80211com *);
194 1.13.2.7 skrll void ieee80211_create_ibss(struct ieee80211com*, struct ieee80211_channel *);
195 1.13.2.7 skrll void ieee80211_reset_bss(struct ieee80211com *);
196 1.13.2.7 skrll void ieee80211_cancel_scan(struct ieee80211com *);
197 1.13.2.7 skrll void ieee80211_end_scan(struct ieee80211com *);
198 1.13.2.8 christos int ieee80211_ibss_merge(struct ieee80211_node *);
199 1.13.2.7 skrll int ieee80211_sta_join(struct ieee80211com *, struct ieee80211_node *);
200 1.13.2.7 skrll void ieee80211_sta_leave(struct ieee80211com *, struct ieee80211_node *);
201 1.13.2.7 skrll
202 1.13.2.7 skrll /*
203 1.13.2.7 skrll * Table of ieee80211_node instances. Each ieee80211com
204 1.13.2.7 skrll * has at least one for holding the scan candidates.
205 1.13.2.7 skrll * When operating as an access point or in ibss mode there
206 1.13.2.7 skrll * is a second table for associated stations or neighbors.
207 1.13.2.7 skrll */
208 1.13.2.7 skrll struct ieee80211_node_table {
209 1.13.2.7 skrll struct ieee80211com *nt_ic; /* back reference */
210 1.13.2.7 skrll ieee80211_node_lock_t nt_nodelock; /* on node table */
211 1.13.2.7 skrll TAILQ_HEAD(, ieee80211_node) nt_node; /* information of all nodes */
212 1.13.2.7 skrll LIST_HEAD(, ieee80211_node) nt_hash[IEEE80211_NODE_HASHSIZE];
213 1.13.2.7 skrll const char *nt_name; /* for debugging */
214 1.13.2.7 skrll ieee80211_scan_lock_t nt_scanlock; /* on nt_scangen */
215 1.13.2.7 skrll u_int nt_scangen; /* gen# for timeout scan */
216 1.13.2.7 skrll int nt_inact_timer; /* inactivity timer */
217 1.13.2.7 skrll int nt_inact_init; /* initial node inact setting */
218 1.13.2.8 christos struct ieee80211_node **nt_keyixmap; /* key ix -> node map */
219 1.13.2.8 christos int nt_keyixmax; /* keyixmap size */
220 1.13.2.7 skrll
221 1.13.2.7 skrll void (*nt_timeout)(struct ieee80211_node_table *);
222 1.13.2.7 skrll };
223 1.13.2.7 skrll void ieee80211_node_table_reset(struct ieee80211_node_table *);
224 1.13.2.7 skrll
225 1.13.2.7 skrll struct ieee80211_node *ieee80211_alloc_node(
226 1.13.2.7 skrll struct ieee80211_node_table *, const u_int8_t *);
227 1.13.2.8 christos struct ieee80211_node *ieee80211_tmp_node(struct ieee80211com *,
228 1.13.2.8 christos const u_int8_t *macaddr);
229 1.13.2.7 skrll struct ieee80211_node *ieee80211_dup_bss(struct ieee80211_node_table *,
230 1.13.2.7 skrll const u_int8_t *);
231 1.13.2.7 skrll #ifdef IEEE80211_DEBUG_REFCNT
232 1.13.2.7 skrll void ieee80211_free_node_debug(struct ieee80211_node *,
233 1.13.2.7 skrll const char *func, int line);
234 1.13.2.7 skrll struct ieee80211_node *ieee80211_find_node_debug(
235 1.13.2.7 skrll struct ieee80211_node_table *, const u_int8_t *,
236 1.13.2.7 skrll const char *func, int line);
237 1.13.2.7 skrll struct ieee80211_node * ieee80211_find_rxnode_debug(
238 1.13.2.7 skrll struct ieee80211com *, const struct ieee80211_frame_min *,
239 1.13.2.7 skrll const char *func, int line);
240 1.13.2.8 christos struct ieee80211_node * ieee80211_find_rxnode_withkey_debug(
241 1.13.2.8 christos struct ieee80211com *,
242 1.13.2.8 christos const struct ieee80211_frame_min *, u_int16_t keyix,
243 1.13.2.8 christos const char *func, int line);
244 1.13.2.7 skrll struct ieee80211_node *ieee80211_find_txnode_debug(
245 1.13.2.7 skrll struct ieee80211com *, const u_int8_t *,
246 1.13.2.7 skrll const char *func, int line);
247 1.13.2.7 skrll struct ieee80211_node *ieee80211_find_node_with_channel_debug(
248 1.13.2.7 skrll struct ieee80211_node_table *, const u_int8_t *macaddr,
249 1.13.2.7 skrll struct ieee80211_channel *, const char *func, int line);
250 1.13.2.7 skrll struct ieee80211_node *ieee80211_find_node_with_ssid_debug(
251 1.13.2.7 skrll struct ieee80211_node_table *, const u_int8_t *macaddr,
252 1.13.2.7 skrll u_int ssidlen, const u_int8_t *ssid,
253 1.13.2.7 skrll const char *func, int line);
254 1.13.2.7 skrll #define ieee80211_free_node(ni) \
255 1.13.2.7 skrll ieee80211_free_node_debug(ni, __func__, __LINE__)
256 1.13.2.7 skrll #define ieee80211_find_node(nt, mac) \
257 1.13.2.7 skrll ieee80211_find_node_debug(nt, mac, __func__, __LINE__)
258 1.13.2.7 skrll #define ieee80211_find_rxnode(nt, wh) \
259 1.13.2.7 skrll ieee80211_find_rxnode_debug(nt, wh, __func__, __LINE__)
260 1.13.2.8 christos #define ieee80211_find_rxnode_withkey(nt, wh, keyix) \
261 1.13.2.8 christos ieee80211_find_rxnode_withkey_debug(nt, wh, keyix, __func__, __LINE__)
262 1.13.2.7 skrll #define ieee80211_find_txnode(nt, mac) \
263 1.13.2.7 skrll ieee80211_find_txnode_debug(nt, mac, __func__, __LINE__)
264 1.13.2.7 skrll #define ieee80211_find_node_with_channel(nt, mac, c) \
265 1.13.2.7 skrll ieee80211_find_node_with_channel_debug(nt, mac, c, __func__, __LINE__)
266 1.13.2.7 skrll #define ieee80211_find_node_with_ssid(nt, mac, sl, ss) \
267 1.13.2.7 skrll ieee80211_find_node_with_ssid_debug(nt, mac, sl, ss, __func__, __LINE__)
268 1.13.2.7 skrll #else
269 1.13.2.7 skrll void ieee80211_free_node(struct ieee80211_node *);
270 1.13.2.7 skrll struct ieee80211_node *ieee80211_find_node(
271 1.13.2.7 skrll struct ieee80211_node_table *, const u_int8_t *);
272 1.13.2.7 skrll struct ieee80211_node * ieee80211_find_rxnode(
273 1.13.2.7 skrll struct ieee80211com *, const struct ieee80211_frame_min *);
274 1.13.2.8 christos struct ieee80211_node * ieee80211_find_rxnode_withkey(struct ieee80211com *,
275 1.13.2.8 christos const struct ieee80211_frame_min *, u_int16_t keyix);
276 1.13.2.7 skrll struct ieee80211_node *ieee80211_find_txnode(
277 1.13.2.7 skrll struct ieee80211com *, const u_int8_t *);
278 1.13.2.7 skrll struct ieee80211_node *ieee80211_find_node_with_channel(
279 1.13.2.7 skrll struct ieee80211_node_table *, const u_int8_t *macaddr,
280 1.13.2.7 skrll struct ieee80211_channel *);
281 1.13.2.7 skrll struct ieee80211_node *ieee80211_find_node_with_ssid(
282 1.13.2.7 skrll struct ieee80211_node_table *, const u_int8_t *macaddr,
283 1.13.2.7 skrll u_int ssidlen, const u_int8_t *ssid);
284 1.13.2.7 skrll #endif
285 1.13.2.8 christos int ieee80211_node_delucastkey(struct ieee80211_node *);
286 1.13.2.2 skrll
287 1.13.2.7 skrll struct ieee80211_node *ieee80211_refine_node_for_beacon(
288 1.13.2.7 skrll struct ieee80211com *, struct ieee80211_node *,
289 1.13.2.7 skrll struct ieee80211_channel *, const u_int8_t *ssid);
290 1.13.2.2 skrll typedef void ieee80211_iter_func(void *, struct ieee80211_node *);
291 1.13.2.7 skrll void ieee80211_iterate_nodes(struct ieee80211_node_table *,
292 1.13.2.2 skrll ieee80211_iter_func *, void *);
293 1.13.2.2 skrll
294 1.13.2.7 skrll void ieee80211_dump_node(struct ieee80211_node_table *,
295 1.13.2.2 skrll struct ieee80211_node *);
296 1.13.2.7 skrll void ieee80211_dump_nodes(struct ieee80211_node_table *);
297 1.13.2.2 skrll
298 1.13.2.7 skrll struct ieee80211_node *ieee80211_fakeup_adhoc_node(
299 1.13.2.7 skrll struct ieee80211_node_table *, const u_int8_t macaddr[]);
300 1.13.2.7 skrll void ieee80211_node_join(struct ieee80211com *, struct ieee80211_node *,int);
301 1.13.2.7 skrll void ieee80211_node_leave(struct ieee80211com *, struct ieee80211_node *);
302 1.13.2.7 skrll u_int8_t ieee80211_getrssi(struct ieee80211com *ic);
303 1.13.2.8 christos
304 1.13.2.8 christos /*
305 1.13.2.8 christos * Parameters supplied when adding/updating an entry in a
306 1.13.2.8 christos * scan cache. Pointer variables should be set to NULL
307 1.13.2.8 christos * if no data is available. Pointer references can be to
308 1.13.2.8 christos * local data; any information that is saved will be copied.
309 1.13.2.8 christos * All multi-byte values must be in host byte order.
310 1.13.2.8 christos */
311 1.13.2.8 christos struct ieee80211_scanparams {
312 1.13.2.8 christos u_int16_t capinfo; /* 802.11 capabilities */
313 1.13.2.8 christos u_int16_t fhdwell; /* FHSS dwell interval */
314 1.13.2.8 christos u_int8_t chan; /* */
315 1.13.2.8 christos u_int8_t bchan;
316 1.13.2.8 christos u_int8_t fhindex;
317 1.13.2.8 christos u_int8_t erp;
318 1.13.2.8 christos u_int16_t bintval;
319 1.13.2.8 christos u_int8_t timoff;
320 1.13.2.8 christos u_int8_t *tim;
321 1.13.2.8 christos u_int8_t *tstamp;
322 1.13.2.8 christos u_int8_t *country;
323 1.13.2.8 christos u_int8_t *ssid;
324 1.13.2.8 christos u_int8_t *rates;
325 1.13.2.8 christos u_int8_t *xrates;
326 1.13.2.8 christos u_int8_t *wpa;
327 1.13.2.8 christos u_int8_t *wme;
328 1.13.2.8 christos };
329 1.13.2.8 christos
330 1.13.2.8 christos void ieee80211_add_scan(struct ieee80211com *,
331 1.13.2.8 christos const struct ieee80211_scanparams *,
332 1.13.2.8 christos const struct ieee80211_frame *,
333 1.13.2.8 christos int subtype, int rssi, int rstamp);
334 1.13.2.8 christos void ieee80211_init_neighbor(struct ieee80211com *, struct ieee80211_node *,
335 1.13.2.8 christos const struct ieee80211_frame *,
336 1.13.2.8 christos const struct ieee80211_scanparams *, int);
337 1.13.2.8 christos struct ieee80211_node *ieee80211_add_neighbor(struct ieee80211com *,
338 1.13.2.8 christos const struct ieee80211_frame *,
339 1.13.2.8 christos const struct ieee80211_scanparams *);
340 1.13.2.8 christos #endif /* !_NET80211_IEEE80211_NODE_H_ */
341