summaryrefslogtreecommitdiff
path: root/android/hal-msg.h
diff options
context:
space:
mode:
authorGrzegorz Kolodziejczyk <grzegorz.kolodziejczyk@tieto.com>2014-02-28 12:20:03 +0100
committerSzymon Janc <szymon.janc@tieto.com>2014-03-02 22:19:34 +0100
commita1ae678eed653a46611b31c9aedfb1fb04322892 (patch)
treee4979346f75e1bc538ab5bd4bddc4cac1a89fcb3 /android/hal-msg.h
parente91dbfd3deb56e84aee67ace8089f3bd2e8911ac (diff)
downloadbluez-a1ae678eed653a46611b31c9aedfb1fb04322892.tar.gz
android/hal-gatt-api: Add Server Request Execute Write Notification
Diffstat (limited to 'android/hal-msg.h')
-rw-r--r--android/hal-msg.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/android/hal-msg.h b/android/hal-msg.h
index d865448f5..306ac21c7 100644
--- a/android/hal-msg.h
+++ b/android/hal-msg.h
@@ -1479,3 +1479,11 @@ struct hal_ev_gatt_server_request_write {
uint8_t is_prep;
uint8_t value[0];
} __attribute__((packed));
+
+#define HAL_EV_GATT_SERVER_REQUEST_EXEC_WRITE 0x9e
+struct hal_ev_gatt_server_request_exec_write {
+ int32_t conn_id;
+ int32_t trans_id;
+ uint8_t bdaddr[6];
+ int32_t exec_write;
+} __attribute__((packed));