FILS: Track completion with FILS shared key authentication offload
Update the internal fils_completed state when offloading FILS shared key authentication to the driver. Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
parent
8b0a6dba87
commit
5538fc9309
5 changed files with 22 additions and 1 deletions
|
@ -3909,6 +3909,13 @@ fail:
|
|||
return -1;
|
||||
}
|
||||
|
||||
|
||||
void wpa_sm_set_reset_fils_completed(struct wpa_sm *sm, int set)
|
||||
{
|
||||
if (sm)
|
||||
sm->fils_completed = !!set;
|
||||
}
|
||||
|
||||
#endif /* CONFIG_FILS */
|
||||
|
||||
|
||||
|
|
|
@ -451,4 +451,6 @@ struct wpabuf * owe_build_assoc_req(struct wpa_sm *sm);
|
|||
int owe_process_assoc_resp(struct wpa_sm *sm, const u8 *resp_ies,
|
||||
size_t resp_ies_len);
|
||||
|
||||
void wpa_sm_set_reset_fils_completed(struct wpa_sm *sm, int set);
|
||||
|
||||
#endif /* WPA_H */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue