summaryrefslogtreecommitdiff
path: root/tools/l2cap-tester.c
diff options
context:
space:
mode:
authorLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2020-11-10 14:57:10 -0800
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2020-11-13 15:12:13 -0800
commitc7feea25284edc19d5b6b9c71040f4883eafb560 (patch)
tree6dd95168ab669760273765ea7f4d93d159cc14aa /tools/l2cap-tester.c
parent02cbe2d2319d87d35e7cea6cb8610c0b67034644 (diff)
downloadbluez-c7feea25284edc19d5b6b9c71040f4883eafb560.tar.gz
l2cap-tester: Fix L2CAP LE Server - Success
This test was failing due to the kernel now using different values for MPS and credits.
Diffstat (limited to 'tools/l2cap-tester.c')
-rw-r--r--tools/l2cap-tester.c4
1 files 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 */
};