* [PATCH BlueZ v2] test-rap: Fix gatt_ccc_read_cb on big-endian
@ 2026-05-14 19:05 Luiz Augusto von Dentz
0 siblings, 0 replies; only message in thread
From: Luiz Augusto von Dentz @ 2026-05-14 19:05 UTC (permalink / raw)
To: linux-bluetooth
[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset=UTF-8, Size: 1364 bytes --]
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Reading CCC values shall return little-endian 16 bits, not native
format.
---
unit/test-rap.c | 11 +++++------
1 file changed, 5 insertions(+), 6 deletions(-)
diff --git a/unit/test-rap.c b/unit/test-rap.c
index 4ca4a715edff..22bc2671bf46 100644
--- a/unit/test-rap.c
+++ b/unit/test-rap.c
@@ -253,8 +253,7 @@ static void gatt_ccc_read_cb(struct gatt_db_attribute *attrib,
struct ccc_state *ccc;
uint16_t handle;
uint8_t ecode = 0;
- const uint8_t *value = NULL;
- size_t len = 0;
+ uint16_t value = 0;
handle = gatt_db_attribute_get_handle(attrib);
@@ -264,11 +263,11 @@ static void gatt_ccc_read_cb(struct gatt_db_attribute *attrib,
goto done;
}
- len = sizeof(ccc->value);
- value = (void *) &ccc->value;
+ value = cpu_to_le16(ccc->value);
done:
- gatt_db_attribute_read_result(attrib, id, ecode, value, len);
+ gatt_db_attribute_read_result(attrib, id, ecode, (void *)&value,
+ sizeof(value));
}
static void ras_attached(struct bt_rap *rap, void *user_data)
@@ -528,7 +527,7 @@ static void test_server(const void *user_data)
RAS_FIND_INFO
/*
- * RAS/SR/RCO/BV-01-C Characteristic Read: RAS Features
+ * RAS/SR/RCO/BV-01-C Characteristic Read: RAS Features
*
* ATT: Read Request (0x0a) len 2
* Handle: 0x0003 (RAS Features value handle)
--
2.53.0
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2026-05-14 19:06 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-05-14 19:05 [PATCH BlueZ v2] test-rap: Fix gatt_ccc_read_cb on big-endian Luiz Augusto von Dentz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox