|
@@ -265,6 +265,7 @@ static void mlme_event_connect(struct wpa_driver_nl80211_data *drv,
|
|
|
enum nl80211_commands cmd, struct nlattr *status,
|
|
|
struct nlattr *addr, struct nlattr *req_ie,
|
|
|
struct nlattr *resp_ie,
|
|
|
+ struct nlattr *timed_out,
|
|
|
struct nlattr *authorized,
|
|
|
struct nlattr *key_replay_ctr,
|
|
|
struct nlattr *ptk_kck,
|
|
@@ -322,6 +323,7 @@ static void mlme_event_connect(struct wpa_driver_nl80211_data *drv,
|
|
|
event.assoc_reject.resp_ies_len = nla_len(resp_ie);
|
|
|
}
|
|
|
event.assoc_reject.status_code = status_code;
|
|
|
+ event.assoc_reject.timed_out = timed_out != NULL;
|
|
|
wpa_supplicant_event(drv->ctx, EVENT_ASSOC_REJECT, &event);
|
|
|
return;
|
|
|
}
|
|
@@ -1644,6 +1646,7 @@ static void qca_nl80211_key_mgmt_auth(struct wpa_driver_nl80211_data *drv,
|
|
|
tb[QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_BSSID],
|
|
|
tb[QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_REQ_IE],
|
|
|
tb[QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_RESP_IE],
|
|
|
+ NULL,
|
|
|
tb[QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_AUTHORIZED],
|
|
|
tb[QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_KEY_REPLAY_CTR],
|
|
|
tb[QCA_WLAN_VENDOR_ATTR_ROAM_AUTH_PTK_KCK],
|
|
@@ -2132,6 +2135,7 @@ static void do_process_drv_event(struct i802_bss *bss, int cmd,
|
|
|
tb[NL80211_ATTR_MAC],
|
|
|
tb[NL80211_ATTR_REQ_IE],
|
|
|
tb[NL80211_ATTR_RESP_IE],
|
|
|
+ tb[NL80211_ATTR_TIMED_OUT],
|
|
|
NULL, NULL, NULL, NULL, NULL);
|
|
|
break;
|
|
|
case NL80211_CMD_CH_SWITCH_NOTIFY:
|