From patchwork Sun Aug 26 15:27:21 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [RFC,2/4] add struct hostapd_sta_wpa_psk_short From: michael-dev@fami-braun.de X-Patchwork-Id: 180065 Message-Id: <20120826152657.9572.94796.stgit@localhost6.localdomain6> To: hostap@lists.shmoo.com Cc: projekt-wlan@fem.tu-ilmenau.de Date: Sun, 26 Aug 2012 17:27:21 +0200 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;