| 304 | } |
| 305 | |
| 306 | void SipClientTrLayer::sctStart() |
| 307 | { |
| 308 | LOG(DEBUG); |
| 309 | ScopedLock lock(mstLock); |
| 310 | // Must add to the tu map before sending the message because the reply can be fast enough to cause a race. |
| 311 | gSipInterface.tuMapAdd(this); |
| 312 | devassert(mstState == stInitializing); |
| 313 | stWrite(&mstOutRequest); // Send the initial message. |
| 314 | mstState = stCallingOrTrying; |
| 315 | } |
| 316 | |
| 317 | // Return TRUE to delete it. |
| 318 | bool SipClientTrLayer::TLPeriodicServiceV() |
no test coverage detected