handshake: add ERP cache object to handshake

Keeping the ERP cache on the handshake object allows station.c to
handle all the ERP details and encapsulate them into a handshake.
FILS can then use the ERP cache right from the handshake rather
than getting it itself.
This commit is contained in:
James Prestwood 2019-04-22 10:11:43 -07:00 committed by Denis Kenzior
parent bc7b12d1a4
commit 91cdd86e0d
1 changed files with 1 additions and 0 deletions

View File

@ -118,6 +118,7 @@ struct handshake_state {
uint8_t gtk[32];
uint8_t gtk_rsc[6];
unsigned int gtk_index;
struct erp_cache_entry *erp_cache;
void *user_data;
void (*free)(struct handshake_state *s);