summaryrefslogtreecommitdiff
path: root/android/hal-msg.h
diff options
context:
space:
mode:
authorJakub Tyszkowski <jakub.tyszkowski@tieto.com>2014-02-28 11:23:59 +0100
committerSzymon Janc <szymon.janc@tieto.com>2014-03-02 22:18:56 +0100
commit57d3b6581036dc331af5050436e06ef143f2bdc0 (patch)
treee154aa79d47bc269fa2cc8a5fc573a7e8cf9679c /android/hal-msg.h
parentf0514276125d4415eb082ac111728217af124006 (diff)
downloadbluez-57d3b6581036dc331af5050436e06ef143f2bdc0.tar.gz
android/hal-gatt-api: Add Client Read Descriptor event
Diffstat (limited to 'android/hal-msg.h')
-rw-r--r--android/hal-msg.h7
1 files changed, 7 insertions, 0 deletions
diff --git a/android/hal-msg.h b/android/hal-msg.h
index a041e4457..ee18172df 100644
--- a/android/hal-msg.h
+++ b/android/hal-msg.h
@@ -1352,3 +1352,10 @@ struct hal_ev_gatt_client_write_characteristic {
int32_t status;
struct hal_gatt_write_params data;
} __attribute__((packed));
+
+#define HAL_EV_GATT_CLIENT_READ_DESCRIPTOR 0x8e
+struct hal_ev_gatt_client_read_descriptor {
+ int32_t conn_id;
+ int32_t status;
+ struct hal_gatt_read_params data;
+} __attribute__((packed));