From 909f0c4caeb31b9493245c965cd3a04bc38d606e Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Mon, 27 Oct 2014 14:52:27 +0200 Subject: [PATCH] shared/gatt-db: Add gatt_db_attribute_get_service_handles --- src/shared/gatt-db.c | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/src/shared/gatt-db.c b/src/shared/gatt-db.c index e1640556c..a2684d88a 100644 --- a/src/shared/gatt-db.c +++ b/src/shared/gatt-db.c @@ -882,7 +882,21 @@ bool gatt_db_attribute_get_service_handles(struct gatt_db_attribute *attrib, uint16_t *start_handle, uint16_t *end_handle) { - return false; + struct gatt_db_service *service; + + if (!attrib) + return false; + + service = attrib->service; + + if (start_handle) + *start_handle = service->attributes[0]->handle; + + if (end_handle) + *end_handle = service->attributes[0]->handle + + service->num_handles - 1; + + return true; } bool gatt_db_attribute_get_permissions(struct gatt_db_attribute *attrib, -- 2.47.3