From fc6f87d8f98a529e029d888d098128f658c14792 Mon Sep 17 00:00:00 2001 From: Claudio Takahasi Date: Mon, 20 Aug 2012 14:32:19 -0300 Subject: [PATCH] att: Add Find Info Response Format constants This patch adds constants declarations for Find Information Response Format field. The format means that information data constains a list of 1 or more handles with their 16-bit or 128-bit Bluetooth UUIDs --- attrib/att.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/attrib/att.h b/attrib/att.h index 9384be53c..a56325588 100644 --- a/attrib/att.h +++ b/attrib/att.h @@ -96,6 +96,10 @@ #define ATT_CANCEL_ALL_PREP_WRITES 0x00 #define ATT_WRITE_ALL_PREP_WRITES 0x01 +/* Find Information Response Formats */ +#define ATT_FIND_INFO_RESP_FMT_16BIT 0x01 +#define ATT_FIND_INFO_RESP_FMT_128BIT 0x02 + struct att_data_list { uint16_t num; uint16_t len;