Return-Path: From: Lukasz Rymanowski To: linux-bluetooth@vger.kernel.org Cc: szymon.janc@tieto.com, Lukasz Rymanowski Subject: [PATCH 1/2] shared/gatt: Use pointer to data instead of uint16 as a request id Date: Sun, 27 Apr 2014 17:11:35 +0200 Message-Id: <1398611496-31433-1-git-send-email-lukasz.rymanowski@tieto.com> Sender: linux-bluetooth-owner@vger.kernel.org List-ID: This is because database user might need to get in callback some more information then request_id. Without this change, database user would need to have some hash map (request_id, additional data) to keep track of request id. --- src/shared/gatt-db.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/shared/gatt-db.h b/src/shared/gatt-db.h index f68f4b3..d1443cb 100644 --- a/src/shared/gatt-db.h +++ b/src/shared/gatt-db.h @@ -30,12 +30,12 @@ uint16_t gatt_db_add_service(struct gatt_db *db, const bt_uuid_t *uuid, bool primary, uint16_t num_handles); bool gatt_db_remove_service(struct gatt_db *db, uint16_t handle); -typedef void (*gatt_db_read_t) (uint16_t handle, uint16_t request_id, +typedef void (*gatt_db_read_t) (uint16_t handle, void *req_data, void *user_data); -typedef void (*gatt_db_write_t) (uint16_t handle, uint16_t request_id, - const uint8_t *value, size_t len, - void *user_data); +typedef void (*gatt_db_write_t) (uint16_t handle, const uint8_t *value, + size_t len, void *req_data, + void *user_data); uint16_t gatt_db_add_characteristic(struct gatt_db *db, uint16_t handle, const bt_uuid_t *uuid, -- 1.8.4