aboutsummaryrefslogtreecommitdiffstats
path: root/meta-ivi/recipes-connectivity/bluez5/bluez5/0005-plugins-service-Add-LocalUUID-property.patch
blob: 194d95b61574be52017a0eb8731751e2ee8d6a38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
From bdfbfc2d3d7558fc05c2587ca1b142d9a6abb7be Mon Sep 17 00:00:00 2001
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Date: Mon, 6 Jan 2014 16:19:39 +0200
Subject: [PATCH 05/12] plugins/service: Add LocalUUID property

---
 plugins/service.c | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/plugins/service.c b/plugins/service.c
index 7b5783d..207ac21 100644
--- a/plugins/service.c
+++ b/plugins/service.c
@@ -148,9 +148,31 @@ static gboolean get_remote_uuid(const GDBusPropertyTable *property,
 	return TRUE;
 }
 
+
+static gboolean local_uuid_exists(const GDBusPropertyTable *property,
+								void *user_data)
+{
+	struct service_data *data = user_data;
+	struct btd_profile *p = btd_service_get_profile(data->service);
+
+	return p->local_uuid != NULL;
+}
+
+static gboolean get_local_uuid(const GDBusPropertyTable *property,
+					DBusMessageIter *iter, void *user_data)
+{
+	struct service_data *data = user_data;
+	struct btd_profile *p = btd_service_get_profile(data->service);
+
+	dbus_message_iter_append_basic(iter, DBUS_TYPE_STRING, &p->local_uuid);
+
+	return TRUE;
+}
+
 static const GDBusPropertyTable service_properties[] = {
 	{ "State", "s", get_state, NULL, NULL },
 	{ "RemoteUUID", "s", get_remote_uuid, NULL, remote_uuid_exists },
+	{ "LocalUUID", "s", get_local_uuid, NULL, local_uuid_exists },
 	{ }
 };
 
-- 
2.2.0