mirror of
https://git.kernel.org/pub/scm/network/wireless/iwd.git
synced 2024-12-21 03:32:42 +01:00
eapol: Drop unused eapol_sm_set_event_func
This commit is contained in:
parent
2d95b17c1d
commit
0651c2c430
@ -823,7 +823,6 @@ struct eapol_sm {
|
|||||||
struct handshake_state *handshake;
|
struct handshake_state *handshake;
|
||||||
enum eapol_protocol_version protocol_version;
|
enum eapol_protocol_version protocol_version;
|
||||||
uint64_t replay_counter;
|
uint64_t replay_counter;
|
||||||
eapol_sm_event_func_t event_func;
|
|
||||||
void *user_data;
|
void *user_data;
|
||||||
struct l_timeout *timeout;
|
struct l_timeout *timeout;
|
||||||
struct l_timeout *eapol_start_timeout;
|
struct l_timeout *eapol_start_timeout;
|
||||||
@ -901,11 +900,6 @@ void eapol_sm_set_user_data(struct eapol_sm *sm, void *user_data)
|
|||||||
sm->user_data = user_data;
|
sm->user_data = user_data;
|
||||||
}
|
}
|
||||||
|
|
||||||
void eapol_sm_set_event_func(struct eapol_sm *sm, eapol_sm_event_func_t func)
|
|
||||||
{
|
|
||||||
sm->event_func = func;
|
|
||||||
}
|
|
||||||
|
|
||||||
static void eapol_sm_write(struct eapol_sm *sm, const struct eapol_frame *ef,
|
static void eapol_sm_write(struct eapol_sm *sm, const struct eapol_frame *ef,
|
||||||
bool noencrypt)
|
bool noencrypt)
|
||||||
{
|
{
|
||||||
|
@ -117,7 +117,6 @@ void eapol_sm_set_use_eapol_start(struct eapol_sm *sm, bool enabled);
|
|||||||
void eapol_sm_set_require_handshake(struct eapol_sm *sm, bool enabled);
|
void eapol_sm_set_require_handshake(struct eapol_sm *sm, bool enabled);
|
||||||
void eapol_sm_set_listen_interval(struct eapol_sm *sm, uint16_t interval);
|
void eapol_sm_set_listen_interval(struct eapol_sm *sm, uint16_t interval);
|
||||||
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_event_func(struct eapol_sm *sm, eapol_sm_event_func_t func);
|
|
||||||
|
|
||||||
void eapol_register(struct eapol_sm *sm);
|
void eapol_register(struct eapol_sm *sm);
|
||||||
bool eapol_start(struct eapol_sm *sm);
|
bool eapol_start(struct eapol_sm *sm);
|
||||||
|
@ -2553,8 +2553,6 @@ int netdev_connect_wsc(struct netdev *netdev, struct scan_bss *bss,
|
|||||||
l_free(ie);
|
l_free(ie);
|
||||||
|
|
||||||
sm = eapol_sm_new(hs);
|
sm = eapol_sm_new(hs);
|
||||||
eapol_sm_set_user_data(sm, user_data);
|
|
||||||
eapol_sm_set_event_func(sm, eapol_cb);
|
|
||||||
|
|
||||||
return netdev_connect_common(netdev, cmd_connect, bss, hs, sm,
|
return netdev_connect_common(netdev, cmd_connect, bss, hs, sm,
|
||||||
event_filter, cb, user_data);
|
event_filter, cb, user_data);
|
||||||
|
Loading…
Reference in New Issue
Block a user