diff options
author | Peng Xu <pxu@codeaurora.org> | 2018-10-15 21:08:35 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2018-10-19 17:44:44 (GMT) |
commit | 2f186d598ab0e62c7ce0c6eb88f8b0bf237c492b (patch) | |
tree | ab8d4f50f5a75a5f09ab9acb6c481d434f57a066 | |
parent | ba7d3fe920347719a8a2d61da8e9175b7f300080 (diff) | |
download | hostap-2f186d598ab0e62c7ce0c6eb88f8b0bf237c492b.zip hostap-2f186d598ab0e62c7ce0c6eb88f8b0bf237c492b.tar.gz hostap-2f186d598ab0e62c7ce0c6eb88f8b0bf237c492b.tar.bz2 |
Define vendor specific NDP attribute for peer NDPE support
Add NAN NDP attribute QCA_WLAN_VENDOR_ATTR_PEER_NDPE_SUPPORT which
indicates if NDP remote peer supports NDPE attribute or not.
Signed-off-by: Jouni Malinen <jouni@codeaurora.org>
-rw-r--r-- | src/common/qca-vendor.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/common/qca-vendor.h b/src/common/qca-vendor.h index 0f8ae2f..7a4da46 100644 --- a/src/common/qca-vendor.h +++ b/src/common/qca-vendor.h @@ -4951,6 +4951,10 @@ enum qca_wlan_vendor_attr_ndp_params { * and ndp confirm. */ QCA_WLAN_VENDOR_ATTR_NDP_TRANSPORT_PROTOCOL = 29, + /* Unsigned 8-bit value indicating if NDP remote peer supports NAN NDPE. + * 1:support 0:not support + */ + QCA_WLAN_VENDOR_ATTR_PEER_NDPE_SUPPORT = 30, /* keep last */ QCA_WLAN_VENDOR_ATTR_NDP_PARAMS_AFTER_LAST, |