Diff between 922c5feb93adfb9773a854d8e89eb2c5604e632b and d97e70142a5f9a4c8f0df4a9d31193d9858bf93a

Changed Files

File Additions Deletions Status
src/attrib-server.c +6 -0 modified

Full Patch

diff --git a/src/attrib-server.c b/src/attrib-server.c
index b076d98..aab7829 100644
--- a/src/attrib-server.c
+++ b/src/attrib-server.c
@@ -1214,6 +1214,8 @@ struct attribute *attrib_db_add(uint16_t handle, bt_uuid_t *uuid, int read_reqs,
 {
 	struct attribute *a;
 
+	DBG("handle=0x%04x", handle);
+
 	/* FIXME: handle conflicts */
 
 	a = g_malloc0(sizeof(struct attribute) + len);
@@ -1236,6 +1238,8 @@ int attrib_db_update(uint16_t handle, bt_uuid_t *uuid, const uint8_t *value,
 	GSList *l;
 	guint h = handle;
 
+	DBG("handle=0x%04x", handle);
+
 	l = g_slist_find_custom(database, GUINT_TO_POINTER(h), handle_cmp);
 	if (!l)
 		return -ENOENT;
@@ -1262,6 +1266,8 @@ int attrib_db_del(uint16_t handle)
 	GSList *l;
 	guint h = handle;
 
+	DBG("handle=0x%04x", handle);
+
 	l = g_slist_find_custom(database, GUINT_TO_POINTER(h), handle_cmp);
 	if (!l)
 		return -ENOENT;