Send a simple message that does not change the dialog state.
| 94 | |
| 95 | // Send a simple message that does not change the dialog state. |
| 96 | void SipTransaction::sendSimpleMessage(DialogState::msgState wInfo, int code) |
| 97 | { |
| 98 | DialogMessage *dmsg = new DialogMessage(mstTranId,wInfo,code); |
| 99 | NewTransactionTable_ttAddMessage(mstTranId,dmsg); |
| 100 | } |
| 101 | |
| 102 | void SipTransaction::sendAuthFailMessage(int code, string rand, string gsmRejectCode) |
| 103 | { |
nothing calls this directly
no test coverage detected