]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
Add support to get the TDLS wider bandwidth capability
authorAleti Nageshwar Reddy <quic_anageshw@quicinc.com>
Wed, 21 Jun 2023 09:04:53 +0000 (14:34 +0530)
committerJouni Malinen <j@w1.fi>
Thu, 22 Jun 2023 18:31:33 +0000 (21:31 +0300)
Extend bitwise mask in enum qca_wlan_tdls_caps_features_supported to get
the TDLS wider bandwidth capability from the driver.

Signed-off-by: Aleti Nageshwar Reddy <quic_anageshw@quicinc.com>
src/common/qca-vendor.h

index 1f187847354c1c4a88be6e7ccedd463dfbe5a5d1..cb10d6c551f93900760828f658a9920055dd6169 100644 (file)
@@ -8079,7 +8079,12 @@ enum wifi_logger_supported_features {
 enum qca_wlan_tdls_caps_features_supported {
        WIFI_TDLS_SUPPORT = (1 << (0)),
        WIFI_TDLS_EXTERNAL_CONTROL_SUPPORT = (1 << (1)),
-       WIFI_TDLS_OFFCHANNEL_SUPPORT = (1 << (2))
+       WIFI_TDLS_OFFCHANNEL_SUPPORT = (1 << (2)),
+
+       /* Indicates if the TDLS session can be formed with the peer using
+        * higher bandwidth than the bandwidth of the AP path.
+        */
+       WIFI_TDLS_WIDER_BW_SUPPORT = (1 << (3)),
 };
 
 /**