|
@@ -1,5 +1,6 @@
|
|
/*
|
|
/*
|
|
* Copyright (c) 2017-2019, 2021 The Linux Foundation. All rights reserved.
|
|
* Copyright (c) 2017-2019, 2021 The Linux Foundation. All rights reserved.
|
|
|
|
+ * Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved.
|
|
*
|
|
*
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
* Permission to use, copy, modify, and/or distribute this software for
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
* any purpose with or without fee is hereby granted, provided that the
|
|
@@ -33,6 +34,7 @@
|
|
#define P2P_MAC_MGMT_ACTION 0xD
|
|
#define P2P_MAC_MGMT_ACTION 0xD
|
|
#define P2P_PUBLIC_ACTION_VENDOR_SPECIFIC 0x9
|
|
#define P2P_PUBLIC_ACTION_VENDOR_SPECIFIC 0x9
|
|
#define P2P_NOA_ATTR 0xC
|
|
#define P2P_NOA_ATTR 0xC
|
|
|
|
+#define WNM_ACTION_FRAME 0xA
|
|
|
|
|
|
#define P2P_MAX_NOA_ATTR_LEN 31
|
|
#define P2P_MAX_NOA_ATTR_LEN 31
|
|
#define P2P_IE_HEADER_LEN 6
|
|
#define P2P_IE_HEADER_LEN 6
|
|
@@ -110,6 +112,7 @@ enum p2p_frame_sub_type {
|
|
* @P2P_PUBLIC_ACTION_GAS_INIT_RSP: gas initial response
|
|
* @P2P_PUBLIC_ACTION_GAS_INIT_RSP: gas initial response
|
|
* @P2P_PUBLIC_ACTION_GAS_COMB_REQ: gas comeback request
|
|
* @P2P_PUBLIC_ACTION_GAS_COMB_REQ: gas comeback request
|
|
* @P2P_PUBLIC_ACTION_GAS_COMB_RSP: gas comeback response
|
|
* @P2P_PUBLIC_ACTION_GAS_COMB_RSP: gas comeback response
|
|
|
|
+ * @P2P_PUBLIC_ACTION_WNM_BTM_REQ: bss transition management request
|
|
* @P2P_PUBLIC_ACTION_NOT_SUPPORT: not support p2p public action frame
|
|
* @P2P_PUBLIC_ACTION_NOT_SUPPORT: not support p2p public action frame
|
|
*/
|
|
*/
|
|
enum p2p_public_action_type {
|
|
enum p2p_public_action_type {
|
|
@@ -126,6 +129,7 @@ enum p2p_public_action_type {
|
|
P2P_PUBLIC_ACTION_GAS_INIT_RSP,
|
|
P2P_PUBLIC_ACTION_GAS_INIT_RSP,
|
|
P2P_PUBLIC_ACTION_GAS_COMB_REQ,
|
|
P2P_PUBLIC_ACTION_GAS_COMB_REQ,
|
|
P2P_PUBLIC_ACTION_GAS_COMB_RSP,
|
|
P2P_PUBLIC_ACTION_GAS_COMB_RSP,
|
|
|
|
+ P2P_PUBLIC_ACTION_WNM_BTM_REQ,
|
|
P2P_PUBLIC_ACTION_NOT_SUPPORT,
|
|
P2P_PUBLIC_ACTION_NOT_SUPPORT,
|
|
};
|
|
};
|
|
|
|
|