Add attribute for dwell time in QCA vendor scan
Add an attribute QCA_WLAN_VENDOR_ATTR_SCAN_DWELL_TIME for specifying dwell time in the QCA vendor scan command. This is a common value which applies across all frequencies requested in the scan. Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
This commit is contained in:
parent
5f11739d58
commit
b8f6b0713a
1 changed files with 4 additions and 0 deletions
|
@ -1716,6 +1716,9 @@ enum qca_vendor_element_id {
|
|||
* randomisation
|
||||
* @QCA_WLAN_VENDOR_ATTR_SCAN_BSSID: 6-byte MAC address representing the
|
||||
* specific BSSID to scan for.
|
||||
* @QCA_WLAN_VENDOR_ATTR_SCAN_DWELL_TIME: Unsigned 64-bit dwell time in
|
||||
* microseconds. This is a common value which applies across all
|
||||
* frequencies specified by QCA_WLAN_VENDOR_ATTR_SCAN_FREQUENCIES.
|
||||
*/
|
||||
enum qca_wlan_vendor_attr_scan {
|
||||
QCA_WLAN_VENDOR_ATTR_SCAN_INVALID_PARAM = 0,
|
||||
|
@ -1730,6 +1733,7 @@ enum qca_wlan_vendor_attr_scan {
|
|||
QCA_WLAN_VENDOR_ATTR_SCAN_MAC = 9,
|
||||
QCA_WLAN_VENDOR_ATTR_SCAN_MAC_MASK = 10,
|
||||
QCA_WLAN_VENDOR_ATTR_SCAN_BSSID = 11,
|
||||
QCA_WLAN_VENDOR_ATTR_SCAN_DWELL_TIME = 12,
|
||||
QCA_WLAN_VENDOR_ATTR_SCAN_AFTER_LAST,
|
||||
QCA_WLAN_VENDOR_ATTR_SCAN_MAX =
|
||||
QCA_WLAN_VENDOR_ATTR_SCAN_AFTER_LAST - 1
|
||||
|
|
Loading…
Reference in a new issue