wpa_supplicant / hostapd 2.0

blacklist.h

Go to the documentation of this file.
00001 
00010 #ifndef BLACKLIST_H
00011 #define BLACKLIST_H
00012 
00013 struct wpa_blacklist {
00014         struct wpa_blacklist *next;
00015         u8 bssid[ETH_ALEN];
00016         int count;
00017 };
00018 
00019 struct wpa_blacklist * wpa_blacklist_get(struct wpa_supplicant *wpa_s,
00020                                          const u8 *bssid);
00021 int wpa_blacklist_add(struct wpa_supplicant *wpa_s, const u8 *bssid);
00022 int wpa_blacklist_del(struct wpa_supplicant *wpa_s, const u8 *bssid);
00023 void wpa_blacklist_clear(struct wpa_supplicant *wpa_s);
00024 
00025 #endif /* BLACKLIST_H */
00026 
 All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Defines