linux-bluetooth.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v1 00/10] bt_att initial implementation
@ 2014-05-09 20:13 Arman Uguray
  2014-05-09 20:13 ` [PATCH v1 01/10] src/shared/att: Introduce struct bt_att Arman Uguray
                   ` (9 more replies)
  0 siblings, 10 replies; 17+ messages in thread
From: Arman Uguray @ 2014-05-09 20:13 UTC (permalink / raw)
  To: linux-bluetooth; +Cc: Arman Uguray

v1:
   - Updated the copyright notice in new files to include Google Inc. Retained
   the Intel copyright in src/shared/att.c and unit/test-att.c which take a lot
   of code from src/shared/mgmt.c and unit/test-mgmt.c respectively.

   - Removed ATT_ERROR_IO from src/shared/att as 0x80 is a legitimate
   application error that varies among GATT profiles. On I/O errors, the code
   now invokes the callback with ATT_OP_ERROR_RESP with NULL parameters.

Arman Uguray (10):
  src/shared/att: Introduce struct bt_att.
  unit/test-att: Add unit tests for src/shared/att.
  tools/btatt: Add command-line tool for ATT protocol testing.
  tools/btatt: Add "exchange-mtu" command.
  src/shared/att: Add "Find Information" request and response.
  unit/test-att: Add unit test for "Find Information" request/response.
  tools/btatt: Add "find-information" command.
  src/shared/att: Add "Find By Type Value" request and response.
  unit/test-att: Add unit test for "Find By Type Value"
    request/response.
  tools/btatt: Add "find-by-type-value" command.

 Makefile.am      |  12 +-
 Makefile.tools   |  10 +-
 src/shared/att.c | 684 +++++++++++++++++++++++++++++++++++++++++++++++++++++++
 src/shared/att.h | 122 ++++++++++
 tools/btatt.c    | 627 ++++++++++++++++++++++++++++++++++++++++++++++++++
 unit/test-att.c  | 474 ++++++++++++++++++++++++++++++++++++++
 6 files changed, 1927 insertions(+), 2 deletions(-)
 create mode 100644 src/shared/att.c
 create mode 100644 src/shared/att.h
 create mode 100644 tools/btatt.c
 create mode 100644 unit/test-att.c

-- 
1.8.3.2


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

end of thread, other threads:[~2014-05-15 17:22 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-09 20:13 [PATCH v1 00/10] bt_att initial implementation Arman Uguray
2014-05-09 20:13 ` [PATCH v1 01/10] src/shared/att: Introduce struct bt_att Arman Uguray
2014-05-13 16:43   ` Marcel Holtmann
2014-05-13 18:44     ` Arman Uguray
2014-05-14  8:17       ` Luiz Augusto von Dentz
2014-05-14 14:54         ` Arman Uguray
2014-05-15 13:07           ` Luiz Augusto von Dentz
2014-05-15 17:22             ` Arman Uguray
2014-05-09 20:13 ` [PATCH v1 02/10] unit/test-att: Add unit tests for src/shared/att Arman Uguray
2014-05-09 20:13 ` [PATCH v1 03/10] tools/btatt: Add command-line tool for ATT protocol testing Arman Uguray
2014-05-09 20:13 ` [PATCH v1 04/10] tools/btatt: Add "exchange-mtu" command Arman Uguray
2014-05-09 20:13 ` [PATCH v1 05/10] src/shared/att: Add "Find Information" request and response Arman Uguray
2014-05-09 20:13 ` [PATCH v1 06/10] unit/test-att: Add unit test for "Find Information" request/response Arman Uguray
2014-05-09 20:13 ` [PATCH v1 07/10] tools/btatt: Add "find-information" command Arman Uguray
2014-05-09 20:13 ` [PATCH v1 08/10] src/shared/att: Add "Find By Type Value" request and response Arman Uguray
2014-05-09 20:13 ` [PATCH v1 09/10] unit/test-att: Add unit test for "Find By Type Value" request/response Arman Uguray
2014-05-09 20:14 ` [PATCH v1 10/10] tools/btatt: Add "find-by-type-value" command Arman Uguray

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).