mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-23 14:22:36 +01:00
eapol: Add eapol_start
This commit is contained in:
parent
2ee8b8e56e
commit
4a540526fe
@ -483,6 +483,11 @@ void eapol_sm_set_own_rsn(struct eapol_sm *sm, const uint8_t *rsn_ie,
|
|||||||
sm->own_rsn = l_memdup(rsn_ie, len);
|
sm->own_rsn = l_memdup(rsn_ie, len);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void eapol_start(int ifindex, struct eapol_sm *sm)
|
||||||
|
{
|
||||||
|
l_hashmap_insert(state_machines, L_UINT_TO_PTR(ifindex), sm);
|
||||||
|
}
|
||||||
|
|
||||||
void __eapol_set_tx_packet_func(eapol_tx_packet_func_t func)
|
void __eapol_set_tx_packet_func(eapol_tx_packet_func_t func)
|
||||||
{
|
{
|
||||||
tx_packet = func;
|
tx_packet = func;
|
||||||
|
@ -142,5 +142,7 @@ void eapol_sm_set_ap_rsn(struct eapol_sm *sm, const uint8_t *rsn_ie,
|
|||||||
void eapol_sm_set_own_rsn(struct eapol_sm *sm, const uint8_t *rsn_ie,
|
void eapol_sm_set_own_rsn(struct eapol_sm *sm, const uint8_t *rsn_ie,
|
||||||
size_t len);
|
size_t len);
|
||||||
|
|
||||||
|
void eapol_start(int ifindex, struct eapol_sm *sm);
|
||||||
|
|
||||||
bool eapol_init();
|
bool eapol_init();
|
||||||
bool eapol_exit();
|
bool eapol_exit();
|
||||||
|
Loading…
Reference in New Issue
Block a user