From 91cdd86e0d50b1ead4a4cbb987d5b2b0023a5b04 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Mon, 22 Apr 2019 10:11:43 -0700 Subject: [PATCH] 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. --- src/handshake.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/handshake.h b/src/handshake.h index c105b971..f1e6dccb 100644 --- a/src/handshake.h +++ b/src/handshake.h @@ -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);