Skip to content

Commit 78bba65

Browse files
robertfalkenbergcodebot
authored andcommitted
rlc: increase SDU queue from 256 to 1024
1 parent 70164cc commit 78bba65

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/rlc/rlc_sdu_queue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ namespace srsran {
2525
class rlc_sdu_queue
2626
{
2727
public:
28-
explicit rlc_sdu_queue(uint16_t capacity_ = 256) :
28+
explicit rlc_sdu_queue(uint16_t capacity_ = 1024) :
2929
capacity(capacity_), queue(capacity_, push_callback(unread_bytes, n_sdus), pop_callback(unread_bytes, n_sdus))
3030
{
3131
}

0 commit comments

Comments
 (0)