From edad26b4be56d81b8535d42614f795155961e272 Mon Sep 17 00:00:00 2001 From: James Prestwood Date: Mon, 22 Mar 2021 09:01:54 -0700 Subject: [PATCH] handshake: add offload flag If true, this flag indicates the handshake is being offloaded to the kernel/hardware. --- src/handshake.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/handshake.h b/src/handshake.h index b738efd9..e667fccd 100644 --- a/src/handshake.h +++ b/src/handshake.h @@ -116,6 +116,7 @@ struct handshake_state { bool wait_for_gtk : 1; bool no_rekey : 1; bool support_fils : 1; + bool offload : 1; uint8_t ssid[32]; size_t ssid_len; char *passphrase;