[PATCH v2 2/4] add struct hostapd_sta_wpa_psk_short, a linked list of PSK entries without metadata.

Michael Braun michael-dev at fami-braun.de
Fri Nov 16 10:12:52 EST 2012


---
 src/ap/ap_config.h |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/ap/ap_config.h b/src/ap/ap_config.h
index f5e4a6a..a853744 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