Commit db6710f8 authored by luis_pereira87's avatar luis_pereira87

Fix debug for ongoing transactions, it is limited to 3 but the maximum number...

Fix debug for ongoing transactions, it is limited to 3 but the maximum number of ongoing transactions can be 4 (NR_RRC_TRANSACTION_IDENTIFIER_NUMBER):
TS 36.331: RRC-TransactionIdentifier ::= INTEGER (0..3)
parent 82bd07eb
......@@ -1448,7 +1448,7 @@ static void handle_rrcReconfigurationComplete(const protocol_ctxt_t *const ctxt_
break;
}
UE->xids[xid] = RRC_ACTION_NONE;
for (int i = 0; i < 3; ++i) {
for (int i = 0; i < NR_RRC_TRANSACTION_IDENTIFIER_NUMBER; ++i) {
if (UE->xids[i] != RRC_ACTION_NONE) {
LOG_I(RRC, "UE %d: transaction %d still ongoing for action %d\n", UE->rrc_ue_id, i, UE->xids[i]);
}
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment