3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-11-17 17:39:28 +01:00

eapol: Update eapol_tx_packet_func_t declaration

Use aa and spa instead of aa_addr and sta_addr
This commit is contained in:
Denis Kenzior 2015-03-20 11:43:17 -05:00
parent a2bc325b3b
commit 656318ed0c

View File

@ -95,9 +95,8 @@ struct eapol_key {
uint8_t key_data[0];
} __attribute__ ((packed));
typedef int (*eapol_tx_packet_func_t)(uint32_t ifindex, const uint8_t *aa_addr,
const uint8_t *sta_addr,
const struct eapol_key *ek,
typedef int (*eapol_tx_packet_func_t)(uint32_t ifindex, const uint8_t *aa,
const uint8_t *spa, const struct eapol_key *ek,
void *user_data);
typedef bool (*eapol_get_nonce_func_t)(uint8_t nonce[]);