3
0
mirror of https://git.kernel.org/pub/scm/network/wireless/iwd.git synced 2024-12-21 11:52:34 +01:00

eapol: Add eapol_sm_get_group_cipher

This commit is contained in:
Denis Kenzior 2016-06-14 17:16:31 -05:00
parent c1ff686ed6
commit 6d81e0a172
2 changed files with 6 additions and 0 deletions

View File

@ -744,6 +744,11 @@ uint32_t eapol_sm_get_pairwise_cipher(struct eapol_sm *sm)
return sm->pairwise_cipher;
}
uint32_t eapol_sm_get_group_cipher(struct eapol_sm *sm)
{
return sm->group_cipher;
}
static bool eapol_sm_ifindex_match(void *data, void *user_data)
{
struct eapol_sm *sm = data;

View File

@ -189,6 +189,7 @@ void eapol_sm_set_user_data(struct eapol_sm *sm, void *user_data);
void eapol_sm_set_tx_user_data(struct eapol_sm *sm, void *user_data);
uint32_t eapol_sm_get_pairwise_cipher(struct eapol_sm *sm);
uint32_t eapol_sm_get_group_cipher(struct eapol_sm *sm);
struct l_io *eapol_open_pae(uint32_t index);