From 656318ed0cab84d1bab0f57af87b585a4abfbb99 Mon Sep 17 00:00:00 2001 From: Denis Kenzior Date: Fri, 20 Mar 2015 11:43:17 -0500 Subject: [PATCH] eapol: Update eapol_tx_packet_func_t declaration Use aa and spa instead of aa_addr and sta_addr --- src/eapol.h | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/eapol.h b/src/eapol.h index 6da0e211..fc6881eb 100644 --- a/src/eapol.h +++ b/src/eapol.h @@ -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[]);