2011-02-04 13:55:07

by Elvis Pfutzenreuter

[permalink] [raw]
Subject: [PATCH 1/2] Add UUID property to GATT service object

---
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



2011-02-04 13:58:51

by Elvis Pfutzenreuter

[permalink] [raw]
Subject: Re: [PATCH 1/2] Add UUID property to GATT service object


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...