From c7feea25284edc19d5b6b9c71040f4883eafb560 Mon Sep 17 00:00:00 2001 From: Luiz Augusto von Dentz Date: Tue, 10 Nov 2020 14:57:10 -0800 Subject: [PATCH] l2cap-tester: Fix L2CAP LE Server - Success This test was failing due to the kernel now using different values for MPS and credits. --- tools/l2cap-tester.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/l2cap-tester.c b/tools/l2cap-tester.c index ff641ba1d..11d549f22 100644 --- a/tools/l2cap-tester.c +++ b/tools/l2cap-tester.c @@ -501,8 +501,8 @@ static const uint8_t le_connect_req[] = { 0x80, 0x00, /* PSM */ static const uint8_t le_connect_rsp[] = { 0x40, 0x00, /* DCID */ 0xa0, 0x02, /* MTU */ - 0xe6, 0x00, /* MPS */ - 0x0a, 0x00, /* Credits */ + 0xbc, 0x00, /* MPS */ + 0x04, 0x00, /* Credits */ 0x00, 0x00, /* Result */ }; -- 2.47.3