]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Define an attribute to do a specific BSSID QCA vendor scan
authorSunil Dutt <usdutt@qti.qualcomm.com>
Mon, 5 Dec 2016 11:21:20 +0000 (16:51 +0530)
committerJouni Malinen <j@w1.fi>
Sun, 11 Dec 2016 19:36:13 +0000 (21:36 +0200)
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
src/common/qca-vendor.h

index 06fc7bb1af7b6e479f712a119138856f6c71b359..46fddffcfb70408efec6e6b62cfcd50aa0f46fc1 100644 (file)
@@ -821,19 +821,22 @@ enum qca_vendor_element_id {
  *     scan flag is set
  * @QCA_WLAN_VENDOR_ATTR_SCAN_MAC_MASK: 6-byte MAC address mask to be used with
  *     randomisation
+ * @QCA_WLAN_VENDOR_ATTR_SCAN_BSSID: 6-byte MAC address representing the
+ *     specific BSSID to scan for.
  */
 enum qca_wlan_vendor_attr_scan {
        QCA_WLAN_VENDOR_ATTR_SCAN_INVALID_PARAM = 0,
-       QCA_WLAN_VENDOR_ATTR_SCAN_IE,
-       QCA_WLAN_VENDOR_ATTR_SCAN_FREQUENCIES,
-       QCA_WLAN_VENDOR_ATTR_SCAN_SSIDS,
-       QCA_WLAN_VENDOR_ATTR_SCAN_SUPP_RATES,
-       QCA_WLAN_VENDOR_ATTR_SCAN_TX_NO_CCK_RATE,
-       QCA_WLAN_VENDOR_ATTR_SCAN_FLAGS,
-       QCA_WLAN_VENDOR_ATTR_SCAN_COOKIE,
-       QCA_WLAN_VENDOR_ATTR_SCAN_STATUS,
-       QCA_WLAN_VENDOR_ATTR_SCAN_MAC,
-       QCA_WLAN_VENDOR_ATTR_SCAN_MAC_MASK,
+       QCA_WLAN_VENDOR_ATTR_SCAN_IE = 1,
+       QCA_WLAN_VENDOR_ATTR_SCAN_FREQUENCIES = 2,
+       QCA_WLAN_VENDOR_ATTR_SCAN_SSIDS = 3,
+       QCA_WLAN_VENDOR_ATTR_SCAN_SUPP_RATES = 4,
+       QCA_WLAN_VENDOR_ATTR_SCAN_TX_NO_CCK_RATE = 5,
+       QCA_WLAN_VENDOR_ATTR_SCAN_FLAGS = 6,
+       QCA_WLAN_VENDOR_ATTR_SCAN_COOKIE = 7,
+       QCA_WLAN_VENDOR_ATTR_SCAN_STATUS = 8,
+       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_AFTER_LAST,
        QCA_WLAN_VENDOR_ATTR_SCAN_MAX =
        QCA_WLAN_VENDOR_ATTR_SCAN_AFTER_LAST - 1