]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Vendor feature capability to support concurrent sessions on Wi-Fi bands
authorSunil Dutt <usdutt@codeaurora.org>
Wed, 4 Nov 2020 16:09:38 +0000 (21:39 +0530)
committerJouni Malinen <j@w1.fi>
Mon, 16 Nov 2020 11:15:28 +0000 (13:15 +0200)
Introduces a vendor specific feature capability
QCA_WLAN_VENDOR_FEATURE_CONCURRENT_BAND_SESSIONS to know if the device
supports concurrent network sessions on different Wi-Fi bands. This feature
capability is attributed to the hardware's capability to support the same
(e.g., DBS).

Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
src/common/qca-vendor.h

index d7e4dda4b2a1727a17b11e325b5866d9ff17f113..096757e416e37085ecdb56703181a2109afe183c 100644 (file)
@@ -1454,6 +1454,10 @@ enum qca_wlan_vendor_acs_hw_mode {
  *     The driver-based SME cases also need to have this support for
  *     Adaptive 11r to handle the connection and roaming scenarios.
  *     This flag indicates the support for the same to the user space.
+ * @QCA_WLAN_VENDOR_FEATURE_CONCURRENT_BAND_SESSIONS: Device supports
+ *     concurrent network sessions on different Wi-Fi bands. This feature
+ *     capability is attributed to the hardware's capability to support
+ *     the same (e.g., DBS).
  * @NUM_QCA_WLAN_VENDOR_FEATURES: Number of assigned feature bits
  */
 enum qca_wlan_vendor_features {
@@ -1470,6 +1474,7 @@ enum qca_wlan_vendor_features {
        QCA_WLAN_VENDOR_FEATURE_6GHZ_SUPPORT            = 10,
        QCA_WLAN_VENDOR_FEATURE_THERMAL_CONFIG          = 11,
        QCA_WLAN_VENDOR_FEATURE_ADAPTIVE_11R            = 12,
+       QCA_WLAN_VENDOR_FEATURE_CONCURRENT_BAND_SESSIONS = 13,
        NUM_QCA_WLAN_VENDOR_FEATURES /* keep last */
 };