ieee80211_sta.h revision 178354
1249259Sdim/*-
2249259Sdim * Copyright (c) 2007-2008 Sam Leffler, Errno Consulting
3249259Sdim * All rights reserved.
4249259Sdim *
5249259Sdim * Redistribution and use in source and binary forms, with or without
6249259Sdim * modification, are permitted provided that the following conditions
7249259Sdim * are met:
8249259Sdim * 1. Redistributions of source code must retain the above copyright
9249259Sdim *    notice, this list of conditions and the following disclaimer.
10249259Sdim * 2. Redistributions in binary form must reproduce the above copyright
11249259Sdim *    notice, this list of conditions and the following disclaimer in the
12249259Sdim *    documentation and/or other materials provided with the distribution.
13249259Sdim *
14249259Sdim * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15249259Sdim * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16249259Sdim * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17249259Sdim * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18249259Sdim * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19263508Sdim * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20249259Sdim * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21249259Sdim * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22249259Sdim * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23249259Sdim * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24249259Sdim *
25249259Sdim * $FreeBSD: head/sys/net80211/ieee80211_sta.h 178354 2008-04-20 20:35:46Z sam $
26249259Sdim */
27249259Sdim#ifndef _NET80211_IEEE80211_STA_H_
28249259Sdim#define _NET80211_IEEE80211_STA_H_
29249259Sdim
30249259Sdim/*
31263508Sdim * Station-mode implementation definitions.
32249259Sdim */
33249259Sdimvoid	ieee80211_sta_attach(struct ieee80211com *);
34249259Sdimvoid	ieee80211_sta_detach(struct ieee80211com *);
35249259Sdimvoid	ieee80211_sta_vattach(struct ieee80211vap *);
36263508Sdim#endif /* !_NET80211_IEEE80211_STA_H_ */
37263508Sdim