From 575499c95ba60a7513d9765afbe58e5164228dcd Mon Sep 17 00:00:00 2001 From: Ismael Gomez Date: Wed, 30 Oct 2019 14:27:33 +0100 Subject: [PATCH] Fix HO when doing ping due to reseting of the PDCP counters in reestablishment. Fixes #618 --- lib/src/upper/pdcp_entity_lte.cc | 6 ------ 1 file changed, 6 deletions(-) diff --git a/lib/src/upper/pdcp_entity_lte.cc b/lib/src/upper/pdcp_entity_lte.cc index cfdb35aba..2e21c2fcd 100644 --- a/lib/src/upper/pdcp_entity_lte.cc +++ b/lib/src/upper/pdcp_entity_lte.cc @@ -82,12 +82,6 @@ void pdcp_entity_lte::reestablish() rx_count = 0; rx_hfn = 0; next_pdcp_rx_sn = 0; - } else { - tx_count = 0; - rx_count = 0; - rx_hfn = 0; - next_pdcp_rx_sn = 0; - last_submitted_pdcp_rx_sn = maximum_pdcp_sn; } } }