pdcp: print length when processing incoming PDU

master
Andre Puschmann 6 years ago
parent 8f8d9f3f30
commit f5a929e425

@ -172,8 +172,13 @@ void pdcp_entity::enable_encryption()
// RLC interface // RLC interface
void pdcp_entity::write_pdu(unique_byte_buffer_t pdu) void pdcp_entity::write_pdu(unique_byte_buffer_t pdu)
{ {
log->info_hex(pdu->msg, pdu->N_bytes, "RX %s PDU, do_integrity = %s, do_encryption = %s", log->info_hex(pdu->msg,
rrc->get_rb_name(lcid).c_str(), (do_integrity) ? "true" : "false", (do_encryption) ? "true" : "false"); pdu->N_bytes,
"RX %s PDU (%d B), do_integrity = %s, do_encryption = %s",
rrc->get_rb_name(lcid).c_str(),
pdu->N_bytes,
(do_integrity) ? "true" : "false",
(do_encryption) ? "true" : "false");
// Sanity check // Sanity check
if (pdu->N_bytes <= sn_len_bytes) { if (pdu->N_bytes <= sn_len_bytes) {

Loading…
Cancel
Save