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:
parent
c1ff686ed6
commit
6d81e0a172
@ -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;
|
||||
|
@ -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);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user