summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorArman Uguray <armansito@chromium.org>2014-11-10 09:07:27 -0800
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2014-11-11 13:43:07 +0200
commit09d39219a124732f4432d125c5641dfad4946c96 (patch)
treef151f34b3e656a311396b7324aa808cf693fa8a5 /TODO
parentc582e1b1783300119253e1e2f3da64ae3205fbb4 (diff)
downloadbluez-09d39219a124732f4432d125c5641dfad4946c96.tar.gz
TODO: Update shared/gatt-server items.
shared/gatt-server has been introduced, so removed that item. Added new items for remaining tasks.
Diffstat (limited to 'TODO')
-rw-r--r--TODO26
1 files changed, 24 insertions, 2 deletions
diff --git a/TODO b/TODO
index b5a9612dd..fec0fa2ca 100644
--- a/TODO
+++ b/TODO
@@ -120,6 +120,12 @@ ATT/GATT (new shared stack)
Priority: Medium
Complexity: C2
+- Use struct iovec to pass around byte buffers that will be sent over the wire,
+ instead of passing uint8_t and size_t parameters everywhere.
+
+ Priority: Medium
+ Complexity: C1
+
- Introduce a handler interface to shared/gatt-client which can be used by the
upper layer to determine when the link has been disconnected or an ATT
protocol request times out.
@@ -155,12 +161,28 @@ ATT/GATT (new shared stack)
Priority: Medium
Complexity: C2
-- Introduce shared/gatt-server, which combined with shared/gatt-db, can be used
- as a GATT server implementation.
+- Introduce a way for shared/gatt-server to check security permissions on the
+ current connection through bt_att.
Priority: Medium
Complexity: C2
+- Provide a tool for shared/gatt-server. This tool should demonstrate how a
+ shared/gatt-db can be used together with a shared/gatt-server to implement the
+ GATT server role. This should be written in a way so that it can be easily
+ used in conjunction with a remote instance of tools/btgatt-client (i.e. it
+ should listen for incoming connections, have similar verbose output, etc.)
+
+ Priority: Medium
+ Complexity: C2
+
+- Implement other low-priority ATT protocol operations for shared/gatt-server:
+
+ Read Multiple Request
+
+ Priority: Low
+ Complexity: C1
+
- Implement the server portion of doc/gatt-api.txt using shared/gatt-server once
it exists.