[RFC PATCH 2/4] add struct hostapd_sta_wpa_psk_short

Michael Braun michael-dev
Sun Aug 26 08:27:21 PDT 2012


This adds struct hostapd_sta_wpa_psk_short, a linked list of PSK entries without metadata.


---
 0 files changed

diff --git a/src/ap/ap_config.h b/src/ap/ap_config.h
index 13f7255..dba3a39 100644
--- a/src/ap/ap_config.h
+++ b/src/ap/ap_config.h
@@ -96,6 +96,11 @@ struct hostapd_vlan {
 };
 
 #define PMK_LEN 32
+struct hostapd_sta_wpa_psk_short {
+	struct hostapd_sta_wpa_psk_short *next;
+	u8 psk[PMK_LEN];
+};
+
 struct hostapd_wpa_psk {
 	struct hostapd_wpa_psk *next;
 	int group;




More information about the Hostap mailing list