1276730Sadrian/*-
2276730Sadrian * Copyright (c) 2015 Adrian Chadd <adrian@FreeBSD.org>
3276730Sadrian * All rights reserved.
4276730Sadrian *
5276730Sadrian * Redistribution and use in source and binary forms, with or without
6276730Sadrian * modification, are permitted provided that the following conditions
7276730Sadrian * are met:
8276730Sadrian * 1. Redistributions of source code must retain the above copyright
9276730Sadrian *    notice, this list of conditions and the following disclaimer.
10276730Sadrian * 2. Redistributions in binary form must reproduce the above copyright
11276730Sadrian *    notice, this list of conditions and the following disclaimer in the
12276730Sadrian *    documentation and/or other materials provided with the distribution.
13276730Sadrian *
14276730Sadrian * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
15276730Sadrian * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
16276730Sadrian * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
17276730Sadrian * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
18276730Sadrian * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
19276730Sadrian * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
20276730Sadrian * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
21276730Sadrian * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
22276730Sadrian * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
23276730Sadrian * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
24276730Sadrian *
25276730Sadrian * $FreeBSD$
26276730Sadrian */
27276730Sadrian#ifndef	__NET80211_IEEE80211_SCAN_SW_H__
28276730Sadrian#define	__NET80211_IEEE80211_SCAN_SW_H__
29276730Sadrian
30276730Sadrianextern	void ieee80211_swscan_attach(struct ieee80211com *ic);
31276730Sadrian
32276730Sadrian#endif	/* __NET80211_IEEE80211_SCAN_SW_H__ */
33