Commit 18c84202 authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Merge branch 'fix_guti_issue' into 'develop'

Fix issue for TMSI value

See merge request oai/cn5g/oai-cn5g-amf!113
parents 33c36186 8c44b053
......@@ -46,7 +46,7 @@ bool FiveGSTmsi::decodefrompdu(Ngap_FiveG_S_TMSI_t pdu) {
std::string setId, pointer;
amfSetid.getAMFSetID(setId);
amfPointer.getAMFPointer(pointer);
_5g_s_tmsi = setId + pointer + std::to_string(tmsi);
_5g_s_tmsi = setId + pointer + conv::tmsi_to_string(tmsi);
tmsi_value = conv::tmsi_to_string(tmsi);
return true;
}
......
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