diff options
author | vamsi krishna <vamsin@qti.qualcomm.com> | 2017-07-07 07:56:22 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2017-07-14 18:11:35 (GMT) |
commit | 46b15e470e77710610eeb4005183c6694261aa48 (patch) | |
tree | f97f7275a9d52e22ebd108400d306091998b663c /src | |
parent | b377ec2585b9ab2839898c6f40d03a9a768bd89f (diff) | |
download | hostap-46b15e470e77710610eeb4005183c6694261aa48.zip hostap-46b15e470e77710610eeb4005183c6694261aa48.tar.gz hostap-46b15e470e77710610eeb4005183c6694261aa48.tar.bz2 |
Add vendor flags for OCE feature support indication
Signed-off-by: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/common/qca-vendor.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index 5196b0f..86fe0d7 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -764,6 +764,15 @@ enum qca_wlan_vendor_acs_hw_mode { * Devices whilst in Listen state, rather than having the user space * wpa_supplicant do it. Information from received P2P requests are * forwarded from firmware to host whenever the host processor wakes up. + * @QCA_WLAN_VENDOR_FEATURE_OCE_STA: Device supports all OCE non-AP STA + * specific features. + * @QCA_WLAN_VENDOR_FEATURE_OCE_AP: Device supports all OCE AP specific + * features. + * @QCA_WLAN_VENDOR_FEATURE_OCE_STA_CFON: Device supports OCE STA-CFON + * specific features only. If a Device sets this bit but not the + * %QCA_WLAN_VENDOR_FEATURE_OCE_AP, the userspace shall assume that + * this Device may not support all OCE AP functionalities but can support + * only OCE STA-CFON functionalities. * @NUM_QCA_WLAN_VENDOR_FEATURES: Number of assigned feature bits */ enum qca_wlan_vendor_features { @@ -771,6 +780,9 @@ enum qca_wlan_vendor_features { QCA_WLAN_VENDOR_FEATURE_SUPPORT_HW_MODE_ANY = 1, QCA_WLAN_VENDOR_FEATURE_OFFCHANNEL_SIMULTANEOUS = 2, QCA_WLAN_VENDOR_FEATURE_P2P_LISTEN_OFFLOAD = 3, + QCA_WLAN_VENDOR_FEATURE_OCE_STA = 4, + QCA_WLAN_VENDOR_FEATURE_OCE_AP = 5, + QCA_WLAN_VENDOR_FEATURE_OCE_STA_CFON = 6, NUM_QCA_WLAN_VENDOR_FEATURES /* keep last */ }; |