This is an *initial* request only, for INVITE or MESSAGE. This version generates the request from the values in the DialogStateVars.
| 551 | // This is an *initial* request only, for INVITE or MESSAGE. |
| 552 | // This version generates the request from the values in the DialogStateVars. |
| 553 | SipMessage *SipBase::makeInitialRequest(string method) |
| 554 | { |
| 555 | string requestUri = dsRemoteURI(); |
| 556 | this->mInviteViaBranch = make_branch(); |
| 557 | return makeRequest(method,requestUri,sipLocalUsername(),&mRemoteHeader,&mLocalHeader,this->mInviteViaBranch); |
| 558 | } |
| 559 | |
| 560 | void SipMOInviteClientTransactionLayer::MOUssdSendINVITE(string ussd, const L3LogicalChannel *chan) |
| 561 | { |
no test coverage detected