mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2025-01-02 09:22:32 +01:00
eapol: Add eapol_sm_get_pairwise_cipher
This commit is contained in:
parent
d297fbb215
commit
c1ff686ed6
@ -739,6 +739,11 @@ void eapol_sm_set_tx_user_data(struct eapol_sm *sm, void *user_data)
|
|||||||
sm->tx_user_data = user_data;
|
sm->tx_user_data = user_data;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
uint32_t eapol_sm_get_pairwise_cipher(struct eapol_sm *sm)
|
||||||
|
{
|
||||||
|
return sm->pairwise_cipher;
|
||||||
|
}
|
||||||
|
|
||||||
static bool eapol_sm_ifindex_match(void *data, void *user_data)
|
static bool eapol_sm_ifindex_match(void *data, void *user_data)
|
||||||
{
|
{
|
||||||
struct eapol_sm *sm = data;
|
struct eapol_sm *sm = data;
|
||||||
|
@ -187,6 +187,9 @@ bool eapol_sm_set_own_wpa(struct eapol_sm *sm, const uint8_t *wpa_ie,
|
|||||||
size_t len);
|
size_t len);
|
||||||
void eapol_sm_set_user_data(struct eapol_sm *sm, void *user_data);
|
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);
|
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);
|
||||||
|
|
||||||
struct l_io *eapol_open_pae(uint32_t index);
|
struct l_io *eapol_open_pae(uint32_t index);
|
||||||
|
|
||||||
void eapol_start(uint32_t ifindex, struct eapol_sm *sm);
|
void eapol_start(uint32_t ifindex, struct eapol_sm *sm);
|
||||||
|
Loading…
Reference in New Issue
Block a user