Home | History | Annotate | Download | only in wpa_supplicant

Lines Matching refs:blacklist

2  * wpa_supplicant - Temporary BSSID blacklist
13 #include "blacklist.h"
16 * wpa_blacklist_get - Get the blacklist entry for a BSSID
19 * Returns: Matching blacklist entry for the BSSID or %NULL if not found
29 e = wpa_s->blacklist;
41 * wpa_blacklist_add - Add an BSSID to the blacklist
43 * @bssid: BSSID to be added to the blacklist
44 * Returns: Current blacklist count on success, -1 on failure
46 * This function adds the specified BSSID to the blacklist or increases the
47 * blacklist count if the BSSID was already listed. It should be called when
51 * This blacklist is used to force %wpa_supplicant to go through all available
66 wpa_printf(MSG_DEBUG, "BSSID " MACSTR " blacklist count "
77 e->next = wpa_s->blacklist;
78 wpa_s->blacklist = e;
79 wpa_printf(MSG_DEBUG, "Added BSSID " MACSTR " into blacklist",
87 * wpa_blacklist_del - Remove an BSSID from the blacklist
89 * @bssid: BSSID to be removed from the blacklist
99 e = wpa_s->blacklist;
103 wpa_s->blacklist = e->next;
108 "blacklist", MAC2STR(bssid));
120 * wpa_blacklist_clear - Clear the blacklist of all entries
128 e = wpa_s->blacklist;
129 wpa_s->blacklist = NULL;
136 "blacklist (clear)", MAC2STR(prev->bssid));