r4166 in private:

Check to see if the channel is really active before issuing 486 Busy Here response.

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@4176 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
Kurtis Heimerl
2012-09-24 20:02:45 +00:00
parent 559eedfb17
commit d11974d660

View File

@@ -366,8 +366,8 @@ bool SIPInterface::checkInvite( osip_message_t * msg)
chan = chan->SACCH();
} else {
// FIXME -- This will change to support multiple transactions.
userBusy = (serviceType==L3CMServiceType::MobileTerminatedCall) && !(chan->recyclable());
chan = NULL;
userBusy = (serviceType==L3CMServiceType::MobileTerminatedCall);
}
}