| 1348 | } |
| 1349 | |
| 1350 | void SipMTInviteServerTransactionLayer::MTCSendTrying() |
| 1351 | { |
| 1352 | SipMessage *invite = getInvite(); |
| 1353 | if (invite==NULL) { |
| 1354 | setSipState(SSFail); |
| 1355 | gReports.incr("OpenBTS.SIP.Failed.Local"); |
| 1356 | } |
| 1357 | LOG(INFO) << sbText(); |
| 1358 | if (getSipState()==SSFail) return; |
| 1359 | SipMessageReply trying(invite,100,string("Trying"),this); |
| 1360 | mtWriteLowSide(&trying); |
| 1361 | setSipState(Proceeding); |
| 1362 | } |
| 1363 | |
| 1364 | void SipMTInviteServerTransactionLayer::MTSMSSendTrying() |
| 1365 | { |
no outgoing calls
no test coverage detected