From e501a2eb599f2939a5d92ba5e7d76fcf810cd996 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 15 Sep 2019 16:19:45 +0300 Subject: [PATCH] DPP2: Connection status result defines Add defines for the connection status result mechanism. Signed-off-by: Jouni Malinen --- src/common/dpp.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/common/dpp.h b/src/common/dpp.h index db640efe8..7e8d9554f 100644 --- a/src/common/dpp.h +++ b/src/common/dpp.h @@ -35,6 +35,7 @@ enum dpp_public_action_frame_type { DPP_PA_PKEX_COMMIT_REVEAL_REQ = 9, DPP_PA_PKEX_COMMIT_REVEAL_RESP = 10, DPP_PA_CONFIGURATION_RESULT = 11, + DPP_PA_CONNECTION_STATUS_RESULT = 12, }; enum dpp_attribute_id { @@ -64,6 +65,8 @@ enum dpp_attribute_id { DPP_ATTR_CHANNEL = 0x1018, DPP_ATTR_PROTOCOL_VERSION = 0x1019, DPP_ATTR_ENVELOPED_DATA = 0x101A, + DPP_ATTR_SEND_CONN_STATUS = 0x101B, + DPP_ATTR_CONN_STATUS = 0x101C, }; enum dpp_status_error { @@ -77,6 +80,7 @@ enum dpp_status_error { DPP_STATUS_INVALID_CONNECTOR = 7, DPP_STATUS_NO_MATCH = 8, DPP_STATUS_CONFIG_REJECTED = 9, + DPP_STATUS_NO_AP = 10, }; #define DPP_CAPAB_ENROLLEE BIT(0)