| 59 | } |
| 60 | |
| 61 | void SipDialog::sendInfoDtmf(unsigned bcdkey) |
| 62 | { |
| 63 | // Has a previous DTMF not finished yet? |
| 64 | |
| 65 | // Start a new Sip INFO Transaction to send the key off. |
| 66 | SipDtmfTU *dtmfTU = new SipDtmfTU(this,bcdkey); |
| 67 | dtmfTU->sctStart(); |
| 68 | } |
| 69 | |
| 70 | // (pat) This is the post-l3-rewrite way, most initialization during construction. |
| 71 | SipDialog *SipDialog::newSipDialogMT(DialogType dtype, SipMessage *req) |
no test coverage detected