increase tx_queue size for RLC UM to match the max SN if 5bits are used

- This prevents some of the tests from blocking if too many SDUs are pushed
  down.
This commit is contained in:
Andre Puschmann 2018-05-04 12:09:45 +02:00
parent fbc373e13c
commit 7064d6a9ed
1 changed files with 1 additions and 1 deletions

View File

@ -31,7 +31,7 @@
namespace srslte {
rlc_um::rlc_um() : tx_sdu_queue(16)
rlc_um::rlc_um() : tx_sdu_queue(32)
{
log = NULL;
pdcp = NULL;