2 * wpa_supplicant - Temporary BSSID blacklist
3 * Copyright (c) 2003-2007, Jouni Malinen <j@w1.fi>
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
9 * Alternatively, this software may be distributed under the terms of BSD
12 * See README and COPYING for more details.
18 struct wpa_blacklist
{
19 struct wpa_blacklist
*next
;
24 struct wpa_blacklist
* wpa_blacklist_get(struct wpa_supplicant
*wpa_s
,
26 int wpa_blacklist_add(struct wpa_supplicant
*wpa_s
, const u8
*bssid
);
27 int wpa_blacklist_del(struct wpa_supplicant
*wpa_s
, const u8
*bssid
);
28 void wpa_blacklist_clear(struct wpa_supplicant
*wpa_s
);
30 #endif /* BLACKLIST_H */