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
1 changed files with 2 additions and 3 deletions

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[]);