qcacld-3.0: Config support to use BSSID in probe request RA

User configuration support to use scan request BSSID value
in Probe Request frame RA during the scan.

Change-Id: Ie0b7620428e1bfbd51e7430b6b7ad23ebede9e67
CRs-Fixed: 3021525
This commit is contained in:
Kiran Kumar Lokere
2021-05-12 23:56:24 -07:00
committed by Madan Koyyalamudi
parent 25778389e8
commit cde70adc46
6 changed files with 120 additions and 0 deletions

View File

@@ -2250,6 +2250,35 @@ wlan_mlme_set_rf_test_mode_enabled(struct wlan_objmgr_psoc *psoc, bool value);
QDF_STATUS
wlan_mlme_get_sta_miracast_mcc_rest_time(struct wlan_objmgr_psoc *psoc,
uint32_t *value);
/**
* wlan_mlme_get_scan_probe_unicast_ra() - Get scan probe unicast RA cfg
*
* @psoc: pointer to psoc object
* @value: value which needs to filled by API
*
* This API gives scan probe request with unicast RA user config
*
* Return: QDF_STATUS
*/
QDF_STATUS
wlan_mlme_get_scan_probe_unicast_ra(struct wlan_objmgr_psoc *psoc,
bool *value);
/**
* wlan_mlme_set_scan_probe_unicast_ra() - Set scan probe unicast RA cfg
*
* @psoc: pointer to psoc object
* @value: set value
*
* This API sets scan probe request with unicast RA user config
*
* Return: QDF_STATUS
*/
QDF_STATUS
wlan_mlme_set_scan_probe_unicast_ra(struct wlan_objmgr_psoc *psoc,
bool value);
/**
* wlan_mlme_get_sap_mcc_chnl_avoid() - Check if SAP MCC needs to be avoided
*