L2CAP: Add Reassembler to separate outgoing and incoming queue
Previously Scheduler handles both outgoing and incoming packet path, but they are actually not related to each other. Separating them to decouple. Now Scheduler only serves outgoing packets, and the new Reassembler serves incoming packets. Currently only basic mode is supported. When we add enhanced retransmission mode, we add logic to it separately. Bug: 144375926 Test: run_cert.sh and bluetooth_test_gd Change-Id: I411c0696fc2e6c834ab11e2485ee26d36104095d
Showing
- system/gd/l2cap/Android.bp 2 additions, 0 deletionssystem/gd/l2cap/Android.bp
- system/gd/l2cap/classic/internal/link.cc 5 additions, 1 deletionsystem/gd/l2cap/classic/internal/link.cc
- system/gd/l2cap/classic/internal/link.h 2 additions, 0 deletionssystem/gd/l2cap/classic/internal/link.h
- system/gd/l2cap/internal/reassembler.cc 92 additions, 0 deletionssystem/gd/l2cap/internal/reassembler.cc
- system/gd/l2cap/internal/reassembler.h 90 additions, 0 deletionssystem/gd/l2cap/internal/reassembler.h
- system/gd/l2cap/internal/reassembler_test.cc 107 additions, 0 deletionssystem/gd/l2cap/internal/reassembler_test.cc
- system/gd/l2cap/internal/scheduler_fifo.cc 0 additions, 18 deletionssystem/gd/l2cap/internal/scheduler_fifo.cc
- system/gd/l2cap/internal/scheduler_fifo.h 2 additions, 6 deletionssystem/gd/l2cap/internal/scheduler_fifo.h
- system/gd/l2cap/internal/scheduler_fifo_test.cc 2 additions, 38 deletionssystem/gd/l2cap/internal/scheduler_fifo_test.cc
- system/gd/l2cap/mtu.h 6 additions, 6 deletionssystem/gd/l2cap/mtu.h
system/gd/l2cap/internal/reassembler.cc
0 → 100644
system/gd/l2cap/internal/reassembler.h
0 → 100644
system/gd/l2cap/internal/reassembler_test.cc
0 → 100644
Please register or sign in to comment