Remove old context in eNB's RRC if new connection request arrives with the same TMSI

master
Pedro Alvarez 4 years ago
parent b944528a4f
commit ca7a38a2ba

@ -299,7 +299,18 @@ void rrc::ue::handle_rrc_con_req(rrc_conn_request_s* msg)
mmec = (uint8_t)msg_r8->ue_id.s_tmsi().mmec.to_number();
m_tmsi = (uint32_t)msg_r8->ue_id.s_tmsi().m_tmsi.to_number();
has_tmsi = true;
// Make sure that the context does not already exist
for (auto ue_it = parent->users.begin(); ue_it != parent->users.end(); ue_it++) {
if (ue_it->first != rnti && ue_it->second->has_tmsi && ue_it->second->mmec == mmec &&
ue_it->second->m_tmsi == m_tmsi) {
parent->logger.info("RRC connection request: UE context already exists. M-TMSI=%d", m_tmsi);
parent->rem_user_thread(ue_it->first); // Simply remove the old context. No need to notify the MME, it will
// update the eNB/MME-UE S1AP Id pair.
}
}
}
establishment_cause = msg_r8->establishment_cause;
send_connection_setup();
state = RRC_STATE_WAIT_FOR_CON_SETUP_COMPLETE;

Loading…
Cancel
Save