qcacld-3.0: Send assoc request IEs in STA_INFO in SAP mode

Userspace expects the assoc request IEs of a disconnected station
to derive 11kv capabilities. Send the same in STA_INFO as part
of remote station info.

Change-Id: Iab5f39de833cd06e814e83f0149a0d21caf59b9f
CRs-Fixed: 2624922
This commit is contained in:
Srinivas Dasari
2020-02-17 18:50:41 +05:30
committed by nshrivas
parent 77500a4543
commit fc3aea42ea
6 changed files with 41 additions and 12 deletions

View File

@@ -2335,4 +2335,13 @@ struct mlme_roam_debug_info {
struct wmi_neighbor_report_data data_11kv;
};
/**
* struct wlan_ies - Generic WLAN Information Element(s) format
* @len: Total length of the IEs
* @data: IE data
*/
struct wlan_ies {
uint16_t len;
uint8_t *data;
};
#endif