nl80211: Add support for minimal probe request content
Extend 'struct wpa_driver_scan_params' to allow higher layer to indicate if minimal probe request content should be included by the driver as part of the scan logic. Implement this with driver_nl80211, by setting NL80211_SCAN_FLAG_MIN_PREQ_CONTENT. Signed-off-by: Ilan Peer <ilan.peer@intel.com>
This commit is contained in:
parent
c84709c59d
commit
a12f39ad4c
4 changed files with 22 additions and 0 deletions
|
@ -3045,6 +3045,7 @@ wpa_scan_clone_params(const struct wpa_driver_scan_params *src)
|
|||
params->relative_adjust_rssi = src->relative_adjust_rssi;
|
||||
params->p2p_include_6ghz = src->p2p_include_6ghz;
|
||||
params->non_coloc_6ghz = src->non_coloc_6ghz;
|
||||
params->min_probe_req_content = src->min_probe_req_content;
|
||||
return params;
|
||||
|
||||
failed:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue