r4167 in private:

On cancellation of inbound MTC, respond with 486 Busy Here instead of 480 Temporarily Unavailable.

git-svn-id: http://wush.net/svn/range/software/public/openbts/trunk@4177 19bc5d8c-e614-43d4-8b26-e1612bc8e597
This commit is contained in:
kurtis.heimerl
2012-09-24 20:02:48 +00:00
parent 73af0c871a
commit 27a86c672b

View File

@@ -337,7 +337,8 @@ bool callManagementDispatchGSM(TransactionEntry *transaction, GSM::LogicalChanne
transaction->MODWaitFor487();
}
else { //if we received it, send a 4** instead
transaction->MODSendERROR(NULL, 480, "Temporarily Unavailable", true);
+ //transaction->MODSendERROR(NULL, 480, "Temporarily Unavailable", true);
+ transaction->MODSendERROR(NULL, 486, "Busy Here", true);
transaction->MODWaitForERRORACK(true);
}
transaction->GSMState(GSM::NullState);