BLE Gatt Server Socket write implemetation
[platform/core/connectivity/bluetooth-frwk.git] / bt-oal / bluez_hal / inc / bt-hal-msg.h
index decf025..4f595b8 100644 (file)
@@ -719,4 +719,16 @@ struct hal_ev_gatt_client_watch_notification {
        uint8_t svc_uuid[16];
        uint8_t char_uuid[16];
 } __attribute__((packed));
+
+#define HAL_EV_GATT_SERVER_ACQUIRE_WRITE_RES  0XC9
+struct hal_ev_gatt_server_acquire_write_res {
+       int32_t mtu;
+       int32_t trans_id;
+       int32_t conn_id;
+       int32_t char_handl;
+       uint8_t bdaddr[6];
+} __attribute__((packed));
+
+
+
 #endif //_BT_HAL_MSG_H_