From 9111ffe1c0f680d8c8a4a19888d630888c6e4db5 Mon Sep 17 00:00:00 2001 From: Vinicius Costa Gomes Date: Wed, 10 Oct 2012 20:35:00 -0300 Subject: [PATCH] att: Replace ATT_MAX_MTU with ATT_MAX_VALUE_LEN ATT has the concept that an attribute value has a maximum length and we weren't keeping track of this. --- attrib/att.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/attrib/att.h b/attrib/att.h index a56325588..ebdb98e02 100644 --- a/attrib/att.h +++ b/attrib/att.h @@ -85,7 +85,7 @@ #define ATT_CHAR_PROPER_AUTH 0x40 #define ATT_CHAR_PROPER_EXT_PROPER 0x80 -#define ATT_MAX_MTU 256 +#define ATT_MAX_VALUE_LEN 512 #define ATT_DEFAULT_L2CAP_MTU 48 #define ATT_DEFAULT_LE_MTU 23 -- 2.47.3