An error occurred fetching the project authors.
- 26 Mar, 2019 1 commit
-
-
Robert Schmidt authored
-
- 09 Mar, 2019 1 commit
-
-
frtabu authored
-
- 08 Mar, 2019 2 commits
-
-
Robert Schmidt authored
* prevent segfault: guard access to RC.rrc with UETARGET * in rlc_data_ind(): correct logic to test for all cases eNB, CU, DU, UE
-
frtabu authored
-
- 05 Mar, 2019 1 commit
-
-
Robert Schmidt authored
-
- 27 Feb, 2019 1 commit
-
-
Cedric Roux authored
With the introduction of X2AP into develop, the UEs now have to regularly send measurement reports. In the logs of the eNB, we see: [OSA] Mismatch found in integrity for algorithm 2, got e0.a0.c2.66, expecting a5.9c.cb.57 [PDCP] [OSA][RB 1] eNB failed to validate MAC-I of incoming PDU This is a bug in the PDCP layer that uses wrong parameters to compute the integrity. This commit fixes this bug. The function pdcp_is_rx_seq_number_valid was removed. Its processing has been directly integrated into the function pdcp_data_ind. The function pdcp_mark_current_pdu_as_received is not called anymore. Its processing was not used later on, so as of today, not calling it does not introduce any functional change. The function pdcp_validate_security takes now as parameters both SN and HFN. Same for the function pdcp_get_next_count_rx. Useless constants PDCP_SN_5BIT, PDCP_SN_7BIT and PDCP_SN_12BIT have been removed. The compilation option ENABLE_SECURITY has been removed. It's now always on. (This may impact some use cases.) The PDCP for DRB using RLC AM is not correct. It was not correct before this commit (apart from the integrity bug). We should deal with a list of PDUs and transmit packets to upper layers as detailed in the specs. Today we transmit the PDU as soon as we get it. We don't care about duplicates, in-order delivery, timeouts. Also, we don't deal with "PDCP re-establishment". Not sure how that impacts the software. And, last but not least, there is still no ROHC.
-
- 26 Feb, 2019 1 commit
-
-
frtabu authored
-
- 25 Feb, 2019 2 commits
- 19 Feb, 2019 1 commit
-
-
frtabu authored
-
- 17 Feb, 2019 1 commit
-
-
frtabu authored
-
- 12 Feb, 2019 1 commit
-
-
frtabu authored
-
- 22 Jan, 2019 2 commits
-
-
Raphael Defosseux authored
Signed-off-by:
Raphael Defosseux <raphael.defosseux@eurecom.fr>
-
Robert Schmidt authored
-
- 19 Jan, 2019 2 commits
-
-
Robert Schmidt authored
-
Robert Schmidt authored
-
- 10 Jan, 2019 1 commit
-
-
Raymond Knopp authored
-
- 09 Jan, 2019 1 commit
-
-
Raymond Knopp authored
corrected bug in handling of UE_mode during initial connection once timing synchronization condition (hysteresis count) is satisfied.
-
- 07 Jan, 2019 1 commit
-
-
Cedric Roux authored
For whatever reason most of the files had their permission changed from 644 to 755, which is not wanted.
-
- 07 Nov, 2018 1 commit
-
-
Robert Schmidt authored
-
- 02 Nov, 2018 2 commits
-
-
yoshio.inoue authored
-
yoshio.inoue authored
-
- 23 Oct, 2018 1 commit
-
-
Y_Tomita authored
-
- 22 Oct, 2018 1 commit
-
-
Y_Tomita authored
-
- 18 Oct, 2018 1 commit
-
-
Robert Schmidt authored
-
- 17 Oct, 2018 2 commits
-
-
Bi-Ruei, Chiu authored
1. Modify all expressions using original LTE-RRC data types for new generated ones 2. Does not change any program logic
-
Y_Tomita authored
Change type for 256UEs test , abnormal exit and add definition of UE's thread ID for multiple UEs simulation.
-
- 25 Sep, 2018 1 commit
-
-
Raymond Knopp authored
-
- 24 Sep, 2018 2 commits
-
-
Bing-Kai Hong authored
-
Navid Nikaein authored
-
- 20 Sep, 2018 3 commits
-
-
Bing-Kai Hong authored
-
Bing-Kai Hong authored
-
Robert Schmidt authored
-
- 19 Sep, 2018 3 commits
-
-
Raymond Knopp authored
-
Robert Schmidt authored
-
Navid Nikaein authored
Fix for some variables
-
- 12 Sep, 2018 1 commit
-
-
Wolfgang A. Mozart authored
-
- 10 Sep, 2018 1 commit
-
-
Cedric Roux authored
This commit manually reverts the commits: - 97c69dc4 - 3278aa49 The basic simulator was not functional anymore because the UE did not send RRCConnectionSetupComplete due to some problem in the PDCP layer, most probably.
-
- 03 Sep, 2018 2 commits
-
-
Robert Schmidt authored
When the RLC layer returns error codes (like dropped packets), this is still counted as PDCP layer traffic. In order to reflect dropped packets or malfunctioning, this patch makes that upon an RLC error code, the function is exited immediately. In this case, it is not counted as additional PDCP traffic. An example is too much UDP traffic. If the RLC buffer is saturated and the packet therefore refused, incoming traffic won't be counted anymore. With this patch, the PDCP layer statistics won't count such traffic anymore.
-
Robert Schmidt authored
If the buffer in the RLC is full, testing the buffer state over and over again slows the DL traffic down. In order to circumvent this, the PDCP will drop any data during a configurable time (compile-time) before it delivers data to RLC again. To change this, see the constant TM_SKIP_FULL_BUF_MS in pdcp.h.
-