From 4c254e5f05517eab130506a800ba42513f66735c Mon Sep 17 00:00:00 2001 From: Marcel Holtmann Date: Sat, 14 Mar 2015 14:16:27 -0700 Subject: [PATCH] lib: Add missing information for extended index list support --- lib/mgmt.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/lib/mgmt.h b/lib/mgmt.h index 8020221ca..d9ee9b2eb 100644 --- a/lib/mgmt.h +++ b/lib/mgmt.h @@ -650,6 +650,16 @@ struct mgmt_ev_new_conn_param { #define MGMT_EV_NEW_CONFIG_OPTIONS 0x001f +#define MGMT_EV_EXT_INDEX_ADDED 0x0020 +struct mgmt_ev_ext_index_added { + uint8_t type; +} __packed; + +#define MGMT_EV_EXT_INDEX_REMOVED 0x0021 +struct mgmt_ev_ext_index_removed { + uint8_t type; +} __packed; + static const char *mgmt_op[] = { "<0x0000>", "Read Version", @@ -710,6 +720,8 @@ static const char *mgmt_op[] = { "Set External Configuration", "Set Public Address", "Start Service Discovery", + "Read Local Out Of Band Extended Data", + "Read Extended Controller Index List", }; static const char *mgmt_ev[] = { @@ -745,6 +757,8 @@ static const char *mgmt_ev[] = { "Unconfigured Index Added", "Unconfigured Index Removed", "New Configuration Options", + "Extended Index Added", + "Extended Index Removed", }; static const char *mgmt_status[] = { -- 2.47.3