From 2f8c880510173ead681c715d8a44a93eb19e201a Mon Sep 17 00:00:00 2001 From: Johan Hedberg Date: Thu, 12 Nov 2015 11:15:54 +0200 Subject: [PATCH] tools/l2cap-tester: Fix expected LE CoC conn rsp parameters --- tools/l2cap-tester.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/tools/l2cap-tester.c b/tools/l2cap-tester.c index c46527cc0..f02cb2479 100644 --- a/tools/l2cap-tester.c +++ b/tools/l2cap-tester.c @@ -492,10 +492,10 @@ static const uint8_t le_connect_req[] = { 0x80, 0x00, /* PSM */ 0x05, 0x00, /* Credits */ }; -static const uint8_t le_connect_rsp[] = { 0x41, 0x00, /* DCID */ - 0x20, 0x00, /* MTU */ - 0x20, 0x00, /* MPS */ - 0x05, 0x00, /* Credits */ +static const uint8_t le_connect_rsp[] = { 0x40, 0x00, /* DCID */ + 0xa0, 0x02, /* MTU */ + 0xe6, 0x00, /* MPS */ + 0x0a, 0x00, /* Credits */ 0x00, 0x00, /* Result */ }; -- 2.47.3