diff --git a/src/handshake.c b/src/handshake.c index 8382aa66..ee23dbad 100644 --- a/src/handshake.c +++ b/src/handshake.c @@ -122,7 +122,6 @@ void handshake_state_free(struct handshake_state *s) l_free(s->authenticator_rsnxe); l_free(s->supplicant_rsnxe); l_free(s->mde); - l_free(s->fte); l_free(s->authenticator_fte); l_free(s->supplicant_fte); l_free(s->fils_ip_req_ie); @@ -316,11 +315,6 @@ void handshake_state_set_mde(struct handshake_state *s, const uint8_t *mde) replace_ie(&s->mde, mde); } -void handshake_state_set_fte(struct handshake_state *s, const uint8_t *fte) -{ - replace_ie(&s->fte, fte); -} - void handshake_state_set_authenticator_fte(struct handshake_state *s, const uint8_t *fte) { diff --git a/src/handshake.h b/src/handshake.h index 5dd225e8..6c58e4d2 100644 --- a/src/handshake.h +++ b/src/handshake.h @@ -103,7 +103,6 @@ struct handshake_state { uint8_t *authenticator_rsnxe; uint8_t *supplicant_rsnxe; uint8_t *mde; - uint8_t *fte; uint8_t *authenticator_fte; uint8_t *supplicant_fte; uint8_t *vendor_ies; @@ -217,7 +216,6 @@ void handshake_state_set_ssid(struct handshake_state *s, const uint8_t *ssid, size_t ssid_len); void handshake_state_set_mde(struct handshake_state *s, const uint8_t *mde); -void handshake_state_set_fte(struct handshake_state *s, const uint8_t *fte); void handshake_state_set_authenticator_fte(struct handshake_state *s, const uint8_t *fte); void handshake_state_set_supplicant_fte(struct handshake_state *s,