Commit ab907918 authored by Cedric Roux's avatar Cedric Roux

Merge remote-tracking branch 'origin/bugfix-234-rlc-um-max-header-size' into...

Merge remote-tracking branch 'origin/bugfix-234-rlc-um-max-header-size' into develop_integration_w15
parents 38abafed 965aa5e6
...@@ -63,7 +63,7 @@ ...@@ -63,7 +63,7 @@
# define RLC_AM_MIN_SEGMENT_SIZE_REQUEST 8 # define RLC_AM_MIN_SEGMENT_SIZE_REQUEST 8
/** Max SDUs that can fit in a PDU. */ /** Max SDUs that can fit in a PDU. */
# define RLC_AM_MAX_SDU_IN_PDU 32 # define RLC_AM_MAX_SDU_IN_PDU 128
/** Max fragments for a SDU. */ /** Max fragments for a SDU. */
# define RLC_AM_MAX_SDU_FRAGMENTS 32 # define RLC_AM_MAX_SDU_FRAGMENTS 32
......
...@@ -53,7 +53,7 @@ ...@@ -53,7 +53,7 @@
// UM_Window_Size = 512 when a 10 bit SN is configured and UM_Window_Size = 0 // UM_Window_Size = 512 when a 10 bit SN is configured and UM_Window_Size = 0
// when the receiving UM RLC entity is configured for MCCH or MTCH. // when the receiving UM RLC entity is configured for MCCH or MTCH.
// li field (values shifted 1 bit left) // li field (values shifted 1 bit left)
# define RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU 24 # define RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU 128
//---------------------------------------------------------- //----------------------------------------------------------
// Events defined for state model of the acknowledged mode entity // Events defined for state model of the acknowledged mode entity
/** Internal event defined for state model of the RLC UM. */ /** Internal event defined for state model of the RLC UM. */
......
...@@ -183,7 +183,7 @@ int rlc_um_read_length_indicators(unsigned char**data_ppP, rlc_um_e_li_t* e_liP, ...@@ -183,7 +183,7 @@ int rlc_um_read_length_indicators(unsigned char**data_ppP, rlc_um_e_li_t* e_liP,
// AssertFatal(*data_size_pP >= 0, "Invalid data_size!"); // AssertFatal(*data_size_pP >= 0, "Invalid data_size!");
} }
if (*num_li_pP >= RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU) { if (*num_li_pP > RLC_UM_SEGMENT_NB_MAX_LI_PER_PDU) {
return -1; return -1;
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment