OWE: Rename function to match use (driver-SME/MLME)
This function is used to process a (Re)Association Request frame, so rename it appropriately to mention assoc_req instead of auth_req. Signed-off-by: Ashok Ponnaiah <aponnaia@codeaurora.org>
This commit is contained in:
parent
759da93a89
commit
79ce2d519b
3 changed files with 10 additions and 10 deletions
|
@ -528,7 +528,7 @@ skip_wpa_check:
|
||||||
elems.owe_dh) {
|
elems.owe_dh) {
|
||||||
u8 *npos;
|
u8 *npos;
|
||||||
|
|
||||||
npos = owe_auth_req_process(hapd, sta,
|
npos = owe_assoc_req_process(hapd, sta,
|
||||||
elems.owe_dh, elems.owe_dh_len,
|
elems.owe_dh, elems.owe_dh_len,
|
||||||
p, sizeof(buf) - (p - buf),
|
p, sizeof(buf) - (p - buf),
|
||||||
&reason);
|
&reason);
|
||||||
|
|
|
@ -2988,7 +2988,7 @@ done:
|
||||||
|
|
||||||
|
|
||||||
#ifdef CONFIG_OWE
|
#ifdef CONFIG_OWE
|
||||||
u8 * owe_auth_req_process(struct hostapd_data *hapd, struct sta_info *sta,
|
u8 * owe_assoc_req_process(struct hostapd_data *hapd, struct sta_info *sta,
|
||||||
const u8 *owe_dh, u8 owe_dh_len,
|
const u8 *owe_dh, u8 owe_dh_len,
|
||||||
u8 *owe_buf, size_t owe_buf_len, u16 *reason)
|
u8 *owe_buf, size_t owe_buf_len, u16 *reason)
|
||||||
{
|
{
|
||||||
|
|
|
@ -142,7 +142,7 @@ void ieee802_11_finish_fils_auth(struct hostapd_data *hapd,
|
||||||
struct sta_info *sta, int success,
|
struct sta_info *sta, int success,
|
||||||
struct wpabuf *erp_resp,
|
struct wpabuf *erp_resp,
|
||||||
const u8 *msk, size_t msk_len);
|
const u8 *msk, size_t msk_len);
|
||||||
u8 * owe_auth_req_process(struct hostapd_data *hapd, struct sta_info *sta,
|
u8 * owe_assoc_req_process(struct hostapd_data *hapd, struct sta_info *sta,
|
||||||
const u8 *owe_dh, u8 owe_dh_len,
|
const u8 *owe_dh, u8 owe_dh_len,
|
||||||
u8 *owe_buf, size_t owe_buf_len, u16 *reason);
|
u8 *owe_buf, size_t owe_buf_len, u16 *reason);
|
||||||
void fils_hlp_timeout(void *eloop_ctx, void *eloop_data);
|
void fils_hlp_timeout(void *eloop_ctx, void *eloop_data);
|
||||||
|
|
Loading…
Reference in a new issue