Sending LastSubmittedRxSN instead of Next_PDCP_RX_SN in status trasnfer.

This commit is contained in:
Pedro Alvarez 2021-02-16 17:13:01 +00:00 committed by Francisco Paisana
parent e2d2951b00
commit 7259f1280a
1 changed files with 1 additions and 1 deletions

View File

@ -540,7 +540,7 @@ bool rrc::ue::rrc_mobility::s1_source_ho_st::start_enb_status_transfer(const asn
b.dl_hfn = pdcp_state.tx_hfn;
b.pdcp_dl_sn = pdcp_state.next_pdcp_tx_sn;
b.ul_hfn = pdcp_state.rx_hfn;
b.pdcp_ul_sn = pdcp_state.next_pdcp_rx_sn;
b.pdcp_ul_sn = pdcp_state.last_submitted_pdcp_rx_sn;
s1ap_bearers.push_back(b);
}