From 0ff04a94a69ccd1783f446f59de6050d79ca3604 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Wed, 22 Oct 2025 09:37:36 -0400 Subject: [PATCH] ioctl-tester: Fix handle value Recent changes to emulator has changed the ACL handles to start at handle 0x0001 in order to use dedicated ranges for different link types. --- tools/ioctl-tester.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/ioctl-tester.c b/tools/ioctl-tester.c index cb283e1ec..c29b30268 100644 --- a/tools/ioctl-tester.c +++ b/tools/ioctl-tester.c @@ -550,7 +550,7 @@ static const struct hci_conn_list_req conn_list_req_1 = { .dev_id = 0x00, .conn_num = 0x01, .conn_info = {{ - .handle = 0x002a, + .handle = 0x0001, .bdaddr = {{ 0x00, 0x00, 0x01, 0x01, 0xaa, 0x00 }}, .type = 0x01, .out = 0x00, @@ -568,7 +568,7 @@ static const struct hci_conn_info_req conn_info_req = { .bdaddr = {{ 0x00, 0x00, 0x01, 0x01, 0xaa, 0x00 }}, .type = ACL_LINK, .conn_info = {{ - .handle = 0x002a, + .handle = 0x0001, .bdaddr = {{ 0x00, 0x00, 0x01, 0x01, 0xaa, 0x00 }}, .type = 0x01, .out = 0x00, -- 2.47.3