Deleted Added
full compact
ieee80211_node.c (172062) ieee80211_node.c (172063)
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2007 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:

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

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
27#include <sys/cdefs.h>
1/*-
2 * Copyright (c) 2001 Atsushi Onoe
3 * Copyright (c) 2002-2007 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:

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

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
27#include <sys/cdefs.h>
28__FBSDID("$FreeBSD: head/sys/net80211/ieee80211_node.c 172062 2007-09-06 00:04:36Z sam $");
28__FBSDID("$FreeBSD: head/sys/net80211/ieee80211_node.c 172063 2007-09-06 00:08:02Z sam $");
29
30#include <sys/param.h>
31#include <sys/systm.h>
32#include <sys/mbuf.h>
33#include <sys/malloc.h>
34#include <sys/kernel.h>
35
36#include <sys/socket.h>

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

189 ni->ni_flags |= IEEE80211_NODE_AUTH;
190 ni->ni_inact_reload = ic->ic_inact_run;
191 ni->ni_inact = ni->ni_inact_reload;
192}
193
194void
195ieee80211_node_unauthorize(struct ieee80211_node *ni)
196{
29
30#include <sys/param.h>
31#include <sys/systm.h>
32#include <sys/mbuf.h>
33#include <sys/malloc.h>
34#include <sys/kernel.h>
35
36#include <sys/socket.h>

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

189 ni->ni_flags |= IEEE80211_NODE_AUTH;
190 ni->ni_inact_reload = ic->ic_inact_run;
191 ni->ni_inact = ni->ni_inact_reload;
192}
193
194void
195ieee80211_node_unauthorize(struct ieee80211_node *ni)
196{
197 struct ieee80211com *ic = ni->ni_ic;
198
197 ni->ni_flags &= ~IEEE80211_NODE_AUTH;
198 ni->ni_inact_reload = ic->ic_inact_auth;
199 if (ni->ni_inact > ni->ni_inact_reload)
200 ni->ni_inact = ni->ni_inact_reload;
201}
202
203/*
204 * Set/change the channel. The rate set is also updated as

--- 1795 unchanged lines hidden ---
199 ni->ni_flags &= ~IEEE80211_NODE_AUTH;
200 ni->ni_inact_reload = ic->ic_inact_auth;
201 if (ni->ni_inact > ni->ni_inact_reload)
202 ni->ni_inact = ni->ni_inact_reload;
203}
204
205/*
206 * Set/change the channel. The rate set is also updated as

--- 1795 unchanged lines hidden ---