Home | History | Annotate | Download | only in ap

Lines Matching refs:psk

39 	struct hostapd_sta_wpa_psk_short *psk;
60 hostapd_free_psk_list(e->psk);
77 static void copy_psk_list(struct hostapd_sta_wpa_psk_short **psk,
83 /* Copy PSK linked list */
84 copy_to = psk;
103 struct hostapd_sta_wpa_psk_short **psk,
126 copy_psk_list(psk, entry->psk);
224 * @psk: Linked list buffer for returning WPA PSK
235 struct hostapd_sta_wpa_psk_short **psk,
244 if (psk)
245 *psk = NULL;
273 vlan_id, psk,
428 struct hostapd_sta_wpa_psk_short *psk;
431 * Decode all tunnel passwords as PSK and save them into a linked list.
448 psk = os_zalloc(sizeof(struct hostapd_sta_wpa_psk_short));
449 if (strpassphrase && psk) {
454 psk->psk, PMK_LEN);
455 psk->next = cache->psk;
456 cache->psk = psk;
457 psk = NULL;
460 os_free(psk);
562 !cache->psk)
636 void hostapd_free_psk_list(struct hostapd_sta_wpa_psk_short *psk)
638 while (psk) {
639 struct hostapd_sta_wpa_psk_short *prev = psk;
640 psk = psk->next;