handshake: remove handshake_state_set_fte

Replaced by set_authenticator_fte
This commit is contained in:
James Prestwood 2023-12-06 12:17:56 -08:00 committed by Denis Kenzior
parent 4f80e8baef
commit 0a0a257e1e
2 changed files with 0 additions and 8 deletions

View File

@ -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)
{

View File

@ -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,