/* * wpa_supplicant - Temporary BSSID blacklist * Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. * * Alternatively, this software may be distributed under the terms of BSD * license. * * See README and COPYING for more details. */#ifndef BLACKLIST_H#define BLACKLIST_Hstructwpa_blacklist{structwpa_blacklist*next;u8bssid[ETH_ALEN];intcount;};structwpa_blacklist*wpa_blacklist_get(structwpa_supplicant*wpa_s,constu8*bssid);intwpa_blacklist_add(structwpa_supplicant*wpa_s,constu8*bssid);intwpa_blacklist_del(structwpa_supplicant*wpa_s,constu8*bssid);voidwpa_blacklist_clear(structwpa_supplicant*wpa_s);#endif /* BLACKLIST_H */