| 620 | //void SipMOByeTU::TUTimeoutV() { stSetDialogState(Cleared,0); } |
| 621 | |
| 622 | SipMOByeTU::SipMOByeTU(SipDialog *wDialog) // : SipClientTrLayer(wDialog->dsPeer(), make_branch(),wDialog) |
| 623 | { |
| 624 | LOG(DEBUG); |
| 625 | string branch = make_branch(); |
| 626 | SipMessage *bye = new SipMessageRequestWithinDialog(stGetMethodNameV(),wDialog,branch); |
| 627 | sctInitInDialogClientTransaction(wDialog, bye, branch); |
| 628 | delete bye; |
| 629 | } |
| 630 | |
| 631 | void SipMOCancelTU::TUWriteHighSideV(SipMessage *sipmsg) { |
| 632 | if (sipmsg->msmCode >= 200) { stSetDialogState(Canceled,sipmsg->msmCode,'K'); } |
nothing calls this directly
no test coverage detected