Commit baffde2d authored by aligungr's avatar aligungr

S-TMSI handling in RRC connection setup

parent 847fbaab
...@@ -31,8 +31,8 @@ Supi Supi::Parse(const std::string &supi) ...@@ -31,8 +31,8 @@ Supi Supi::Parse(const std::string &supi)
int64_t GutiMobileIdentity::toTmsiValue() const int64_t GutiMobileIdentity::toTmsiValue() const
{ {
return (static_cast<int64_t>(this->tmsi)) | (static_cast<int64_t>(this->amfPointer) << 38LL) | return (static_cast<int64_t>(this->tmsi)) | (static_cast<int64_t>(this->amfPointer) << 32LL) |
(static_cast<int64_t>(this->amfSetId) << 48LL); (static_cast<int64_t>(this->amfSetId) << 38LL);
} }
GutiMobileIdentity GutiMobileIdentity::FromSTmsi(int64_t sTmsi) GutiMobileIdentity GutiMobileIdentity::FromSTmsi(int64_t sTmsi)
......
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