mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-11-22 06:29:23 +01:00
handshake: remove handshake_state_set_fte
Replaced by set_authenticator_fte
This commit is contained in:
parent
4f80e8baef
commit
0a0a257e1e
@ -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)
|
||||
{
|
||||
|
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user