1*4f898719SImre Vadász /*- 2*4f898719SImre Vadász * Copyright (c) 2015 Adrian Chadd <adrian@FreeBSD.org> 3*4f898719SImre Vadász * All rights reserved. 4*4f898719SImre Vadász * 5*4f898719SImre Vadász * Redistribution and use in source and binary forms, with or without 6*4f898719SImre Vadász * modification, are permitted provided that the following conditions 7*4f898719SImre Vadász * are met: 8*4f898719SImre Vadász * 1. Redistributions of source code must retain the above copyright 9*4f898719SImre Vadász * notice, this list of conditions and the following disclaimer. 10*4f898719SImre Vadász * 2. Redistributions in binary form must reproduce the above copyright 11*4f898719SImre Vadász * notice, this list of conditions and the following disclaimer in the 12*4f898719SImre Vadász * documentation and/or other materials provided with the distribution. 13*4f898719SImre Vadász * 14*4f898719SImre Vadász * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 15*4f898719SImre Vadász * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 16*4f898719SImre Vadász * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 17*4f898719SImre Vadász * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 18*4f898719SImre Vadász * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 19*4f898719SImre Vadász * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 20*4f898719SImre Vadász * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 21*4f898719SImre Vadász * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 22*4f898719SImre Vadász * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 23*4f898719SImre Vadász * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 24*4f898719SImre Vadász * 25*4f898719SImre Vadász * $FreeBSD$ 26*4f898719SImre Vadász */ 27*4f898719SImre Vadász #ifndef __NET80211_IEEE80211_SCAN_SW_H__ 28*4f898719SImre Vadász #define __NET80211_IEEE80211_SCAN_SW_H__ 29*4f898719SImre Vadász 30*4f898719SImre Vadász extern void ieee80211_swscan_attach(struct ieee80211com *ic); 31*4f898719SImre Vadász 32*4f898719SImre Vadász #endif /* __NET80211_IEEE80211_SCAN_SW_H__ */ 33