All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] Add UUID property to GATT service object
@ 2011-02-04 13:55 Elvis Pfützenreuter
  2011-02-04 13:58 ` Elvis Pfützenreuter
  0 siblings, 1 reply; 2+ messages in thread
From: Elvis Pfützenreuter @ 2011-02-04 13:55 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: epx

---
 attrib/client.c |    5 +++++
 1 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/attrib/client.c b/attrib/client.c
index 44638d3..9b8efa8 100644
--- a/attrib/client.c
+++ b/attrib/client.c
@@ -940,6 +940,7 @@ static DBusMessage *prim_get_properties(DBusConnection *conn, DBusMessage *msg,
 	DBusMessageIter dict;
 	GSList *l;
 	char **chars;
+	char *uuid;
 	int i;
 
 	reply = dbus_message_new_method_return(msg);
@@ -962,6 +963,10 @@ static DBusMessage *prim_get_properties(DBusConnection *conn, DBusMessage *msg,
 
 	dict_append_array(&dict, "Characteristics", DBUS_TYPE_OBJECT_PATH,
 								&chars, i);
+	uuid = g_strdup(prim->att->uuid);
+	dict_append_entry(&dict, "UUID", DBUS_TYPE_STRING, &uuid);
+
+	g_free(uuid);
 	g_free(chars);
 
 	dbus_message_iter_close_container(&iter, &dict);
-- 
1.7.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH 1/2] Add UUID property to GATT service object
  2011-02-04 13:55 [PATCH 1/2] Add UUID property to GATT service object Elvis Pfützenreuter
@ 2011-02-04 13:58 ` Elvis Pfützenreuter
  0 siblings, 0 replies; 2+ messages in thread
From: Elvis Pfützenreuter @ 2011-02-04 13:58 UTC (permalink / raw)
  To: linux-bluetooth


On 4 Feb 2011, at 11:55 , Elvis Pfützenreuter wrote:

> ---
> attrib/client.c |    5 +++++
> 1 files changed, 5 insertions(+), 0 deletions(-)

Please ignore this patch, header is wrong, it is not part of a series. Sending correct one right away...

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2011-02-04 13:58 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2011-02-04 13:55 [PATCH 1/2] Add UUID property to GATT service object Elvis Pfützenreuter
2011-02-04 13:58 ` Elvis Pfützenreuter

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.