Fix HO when doing ping due to reseting of the PDCP counters in reestablishment. Fixes #618

This commit is contained in:
Ismael Gomez 2019-10-30 14:27:33 +01:00
parent 22f2781f28
commit 575499c95b
1 changed files with 0 additions and 6 deletions

View File

@ -82,12 +82,6 @@ void pdcp_entity_lte::reestablish()
rx_count = 0; rx_count = 0;
rx_hfn = 0; rx_hfn = 0;
next_pdcp_rx_sn = 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;
} }
} }
} }