It will return attribute's permissions or 0 if attribute was not found. --- src/shared/gatt-db.c | 20 ++++++++++++++++++++ src/shared/gatt-db.h | 2 ++ 2 files changed, 22 insertions(+) diff --git a/src/shared/gatt-db.c b/src/shared/gatt-db.c index 36316af..29c900f 100644 --- a/src/shared/gatt-db.c +++ b/src/shared/gatt-db.c @@ -733,3 +733,23 @@ uint16_t gatt_db_get_end_handle(struct gatt_db *db, uint16_t handle) return service->attributes[0]->handle + service->num_handles - 1; } + +uint8_t gatt_db_get_attribute_permissions(struct gatt_db *db, uint16_t handle) +{ + struct gatt_db_attribute *attribute; + struct gatt_db_service *service; + uint16_t service_handle; + + service = queue_find(db->services, find_service_for_handle, + INT_TO_PTR(handle)); + if (!service) + return 0; + + service_handle = service->attributes[0]->handle; + + attribute = service->attributes[handle - service_handle]; + if (!attribute) + return 0; + + return attribute->permissions; +} diff --git a/src/shared/gatt-db.h b/src/shared/gatt-db.h index 3d46730..d2a2ece 100644 --- a/src/shared/gatt-db.h +++ b/src/shared/gatt-db.h @@ -91,3 +91,5 @@ const bt_uuid_t *gatt_db_get_attribute_type(struct gatt_db *db, uint16_t handle); uint16_t gatt_db_get_end_handle(struct gatt_db *db, uint16_t handle); + +uint8_t gatt_db_get_attribute_permissions(struct gatt_db *db, uint16_t handle); -- 1.9.0 -- 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