rlc,bugfix - increase pdcp sn notification ack list maximum size

This commit is contained in:
Francisco 2021-04-29 12:01:45 +01:00 committed by Andre Puschmann
parent ad1a0eb2ac
commit 5cecb40410
1 changed files with 1 additions and 1 deletions

View File

@ -175,7 +175,7 @@ struct pdcp_lte_state_t {
// Custom type for interface between PDCP and RLC to convey SDU delivery status
// Arbitrarily chosen limit, optimal value depends on the RLC (pollPDU) and PDCP config, channel BLER,
// traffic characterisitcs, etc. The chosen value has been tested with 100 PRB bi-dir TCP
#define MAX_SDUS_TO_NOTIFY (1024)
#define MAX_SDUS_TO_NOTIFY (4096)
typedef srsran::bounded_vector<uint32_t, MAX_SDUS_TO_NOTIFY> pdcp_sn_vector_t;
} // namespace srsran