Home
last modified time | relevance | path

Searched refs:acl_cache (Results 1 – 2 of 2) sorted by relevance

/freebsd/contrib/wpa/src/ap/
H A Dieee802_11_auth.c66 static void hostapd_acl_cache_free(struct hostapd_cached_radius_acl *acl_cache) in hostapd_acl_cache_free() argument
70 while (acl_cache) { in hostapd_acl_cache_free()
71 prev = acl_cache; in hostapd_acl_cache_free()
72 acl_cache = acl_cache->next; in hostapd_acl_cache_free()
86 for (entry = hapd->acl_cache; entry; entry = entry->next) { in hostapd_acl_cache_get()
341 entry = hapd->acl_cache; in hostapd_acl_expire_cache()
351 hapd->acl_cache = entry->next; in hostapd_acl_expire_cache()
599 cache->next = hapd->acl_cache; in hostapd_acl_recv_radius()
600 hapd->acl_cache = cache; in hostapd_acl_recv_radius()
677 hostapd_acl_cache_free(hapd->acl_cache); in hostapd_acl_deinit()
[all …]
H A Dhostapd.h211 struct hostapd_cached_radius_acl *acl_cache; member