Commit 8c44b053 authored by Tien-Thinh Nguyen's avatar Tien-Thinh Nguyen

Fix issue for TMSI value

parent 33c36186
......@@ -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