diff mbox series

[BlueZ,3/4] bthost: Increase number of credits

Message ID 20220209235553.150294-3-luiz.dentz@gmail.com
State New
Headers show
Series [BlueZ,1/4] bthost: Fix not handling ACL fragmentation | expand

Commit Message

Luiz Augusto von Dentz Feb. 9, 2022, 11:55 p.m. UTC
From: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>

This increase the number of credits so bigger packets can be sent by
the likes of rfcomm-tester.
---
 emulator/bthost.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff mbox series

Patch

diff --git a/emulator/bthost.c b/emulator/bthost.c
index bb1219d28..d751e7dd4 100644
--- a/emulator/bthost.c
+++ b/emulator/bthost.c
@@ -2322,7 +2322,7 @@  static void rfcomm_pn_recv(struct bthost *bthost, struct btconn *conn,
 	pn_cmd.ack_timer = pn->ack_timer;
 	pn_cmd.max_retrans = pn->max_retrans;
 	pn_cmd.mtu = pn->mtu;
-	pn_cmd.credits = pn->credits;
+	pn_cmd.credits = 255;
 
 	rfcomm_uih_send(bthost, conn, l2conn, RFCOMM_ADDR(1, 0),
 			RFCOMM_MCC_TYPE(0, RFCOMM_PN), &pn_cmd, sizeof(pn_cmd));