laforge
/
openbts-osmo
Archived
1
0
Fork 0

Store mobile IMSI instead of TMSI in MOUSSD transaction.

This commit is contained in:
Alexander Chemeris 2010-09-09 18:15:16 +04:00
parent e8ffcdb72f
commit 00b1810997
1 changed files with 4 additions and 1 deletions

View File

@ -270,8 +270,11 @@ void Control::MOUSSDController(const L3CMServiceRequest *request, LogicalChannel
assert(LCH);
LOG(DEBUG) << "Get L3 CM Service Request: " << *request;
// If we got a TMSI, find the IMSI.
// Note that this is a copy, not a reference.
L3MobileIdentity mobileIdentity = request->mobileIdentity();
LOG(DEBUG) << "mobileIdentity: "<<mobileIdentity;
resolveIMSI(mobileIdentity,LCH);
LOG(DEBUG) << "mobileIdentity: "<<request->mobileIdentity()<<" IMSI:"<<mobileIdentity;
LOG(DEBUG) << "Send L3 CM Service Accept";
LCH->send(L3CMServiceAccept());