コード例 #1
0
ファイル: bss.c プロジェクト: KHATEEBNSIT/AP
static void wpa_bss_remove_oldest(struct wpa_supplicant *wpa_s)
{
	/*
	 * Remove the oldest entry that does not match with any configured
	 * network.
	 */
	if (wpa_bss_remove_oldest_unknown(wpa_s) == 0)
		return;

	/*
	 * Remove the oldest entry since no better candidate for removal was
	 * found.
	 */
	wpa_bss_remove(wpa_s, dl_list_first(&wpa_s->bss,
					    struct wpa_bss, list));
}
コード例 #2
0
ファイル: bss.c プロジェクト: fengcc/chameleon
static int wpa_bss_remove_oldest(struct wpa_supplicant *wpa_s)
{
    struct wpa_bss *bss;

    /*
     * Remove the oldest entry that does not match with any configured
     * network.
     */
    if (wpa_bss_remove_oldest_unknown(wpa_s) == 0)
        return 0;

    /*
     * Remove the oldest entry that isn't currently in use.
     */
    dl_list_for_each(bss, &wpa_s->bss, struct wpa_bss, list) {
        if (!wpa_bss_in_use(wpa_s, bss)) {
            wpa_bss_remove(wpa_s, bss, __func__);
            return 0;
        }
    }

    return -1;
}