Small stuff I forgot to reset.

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@3050 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
kurtis.heimerl
2012-01-17 08:31:15 +00:00
parent 9ec878c0aa
commit 179f724153
2 changed files with 2 additions and 1 deletions

View File

@@ -674,6 +674,7 @@ void Control::MOCStarter(const GSM::L3CMServiceRequest* req, GSM::LogicalChannel
GSM::L3MobileIdentity mobileID = req->mobileID(); GSM::L3MobileIdentity mobileID = req->mobileID();
resolveIMSI(mobileID,LCH); resolveIMSI(mobileID,LCH);
// FIXME -- At this point, verify the that subscriber has access to this service. // FIXME -- At this point, verify the that subscriber has access to this service.
// If the subscriber isn't authorized, send a CM Service Reject with // If the subscriber isn't authorized, send a CM Service Reject with
// cause code, 0x41, "requested service option not subscribed", // cause code, 0x41, "requested service option not subscribed",

View File

@@ -97,7 +97,7 @@ RRLPServer::RRLPServer(L3MobileIdentity wMobileID, LogicalChannel *wDCCH)
name = string("IMSI") + mobileID.digits(); name = string("IMSI") + mobileID.digits();
// don't continue if IMSI has a RRLP support flag and it's false // don't continue if IMSI has a RRLP support flag and it's false
unsigned int supported = 0; unsigned int supported = 0;
if (false && sqlite3_single_lookup(gSubscriberRegistry.db(), "sip_buddies", "name", name.c_str(), if (sqlite3_single_lookup(gSubscriberRegistry.db(), "sip_buddies", "name", name.c_str(),
"RRLPSupported", supported) && !supported) { "RRLPSupported", supported) && !supported) {
LOG(INFO) << "RRLP not supported for " << name; LOG(INFO) << "RRLP not supported for " << name;
trouble = true; trouble = true;