summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorClaudio Takahasi <claudio.takahasi@openbossa.org>2011-02-28 10:44:12 -0300
committerJohan Hedberg <johan.hedberg@nokia.com>2011-03-01 16:11:54 -0300
commitc66d33b9c8492c90849f4432788313d3e3b6d104 (patch)
treecf7ab275c63ab82ad7429edc0e14ceeeb5c082e1 /TODO
parentc3bda951286eb542bea101f7cc1491ca5e038254 (diff)
TODO: Add item related to UUID handling
Diffstat (limited to 'TODO')
-rw-r--r--TODO13
1 files changed, 13 insertions, 0 deletions
diff --git a/TODO b/TODO
index cf371791c..9f899b03c 100644
--- a/TODO
+++ b/TODO
@@ -17,6 +17,19 @@ Background
General
==========
+- UUID128 handling: Create new functions to handle UUIDs on host order.
+ Functions should start with prefix "bt_uuid". In the first phase, attribute
+ server/client and gatttool code should be changed to use these new functions.
+ The idea is to keep the consistency for UUID-16, UUID-32 and UUID-128. SDP
+ functions store UUID-16 and UUID-32 on host order, however UUID-128 is stored
+ on network order/big endian. Attribute Protocol uses little endian, while
+ SDP uses big endian. The idea is always store the UUID values on host order
+ and use utility functions to convert to the proper byte order depending on
+ the protocol: ATT or SDP.
+
+ Priority: high
+ Complexity: C1
+
- Rename glib-helper file to a more convenient name. The ideia is try to keep
only sdp helpers functions. bt_* prefix shall be also changed.