summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-01-06 16:19:39 +0200
committerPedro Alvarez <pedro.alvarez@codethink.co.uk>2016-03-09 18:21:42 +0000
commit8551ceab983807817cab065b660f7ee93869c650 (patch)
treec1fbfdfdf1c4e616696228ef63002b2b9c1036c1
parent6b0d43aae9291db2edc6e84feb1b406b51940660 (diff)
downloadbluez-8551ceab983807817cab065b660f7ee93869c650.tar.gz
plugins/service: Add LocalUUID property
-rw-r--r--plugins/service.c22
1 files changed, 22 insertions, 0 deletions
diff --git a/plugins/service.c b/plugins/service.c
index 7b5783d33..207ac213b 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 },
{ }
};