Added the bt_gatt_client_set_debug function, which sets up a callback to be used internally by util_debug. --- src/shared/gatt-client.c | 24 ++++++++++++++++++++++++ src/shared/gatt-client.h | 6 ++++++ 2 files changed, 30 insertions(+) diff --git a/src/shared/gatt-client.c b/src/shared/gatt-client.c index 8d5c126..eeca394 100644 --- a/src/shared/gatt-client.c +++ b/src/shared/gatt-client.c @@ -28,6 +28,10 @@ struct bt_gatt_client { struct bt_att *att; int ref_count; + + bt_gatt_client_debug_func_t debug_callback; + bt_gatt_client_destroy_func_t debug_destroy; + void *debug_data; }; struct bt_gatt_client *bt_gatt_client_new(struct bt_att *att, uint16_t mtu) @@ -66,6 +70,9 @@ void bt_gatt_client_unref(struct bt_gatt_client *client) if (__sync_sub_and_fetch(&client->ref_count, 1)) return; + if (client->debug_destroy) + client->debug_destroy(client->debug_data); + bt_att_unref(client->att); free(client); } @@ -77,3 +84,20 @@ bool bt_gatt_client_set_ready_handler(struct bt_gatt_client *client, { // TODO } + +bool bt_gatt_client_set_debug(struct bt_gatt_client *client, + bt_gatt_client_debug_func_t callback, + void *user_data, + bt_gatt_client_destroy_func_t destroy) { + if (!client) + return false; + + if (client->debug_destroy) + client->debug_destroy(client->debug_data); + + client->debug_callback = callback; + client->debug_destroy = destroy; + client->debug_data = user_data; + + return true; +} diff --git a/src/shared/gatt-client.h b/src/shared/gatt-client.h index 757db65..45c6010 100644 --- a/src/shared/gatt-client.h +++ b/src/shared/gatt-client.h @@ -34,9 +34,15 @@ void bt_gatt_client_unref(struct bt_gatt_client *client); typedef void (*bt_gatt_client_destroy_func_t)(void *user_data); typedef void (*bt_gatt_client_callback_t)(bool success, uint8_t att_ecode, void *user_data); +typedef void (*bt_gatt_client_debug_func_t)(const char *str, void *user_data); bool bt_gatt_client_set_ready_handler(struct bt_gatt_client *client, bt_gatt_client_callback_t callback, void *user_data, bt_gatt_client_destroy_func_t destroy); +bool bt_gatt_client_set_debug(struct bt_gatt_client *client, + bt_gatt_client_debug_func_t callback, + void *user_data, + bt_gatt_client_destroy_func_t destroy); + -- 2.1.0.rc2.206.gedb03e5 -- To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html