-
-
Notifications
You must be signed in to change notification settings - Fork 92
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
SIP Cancel request is not received by the intended client #160
Comments
Hi @p-akshay In diago (https://github.com/emiago/diago) (B2BUA) this is handled for you by just canceling context on INVITE. You only need to make sure that you are passing context from received dialog |
Hi @emiago , Ok...Thanks for the suggestion. I am indeed working on a B2BUA kind of design. One question w.r.t. Diago library... will I be able to use the same and sipgo together? in my application dialog plays an important role but other sip events are also required. I was not sure via documentation if the diago allows for the handling of other sip events. One more question...will the same fix be added in sipgo? Thanks |
Hi @p-akshay, I am not sure what fix you are expecting, as diago already handles this.
You can override behavior by passing your server and then registering handlers after
Diago registers what it needs and mostly it is arround dialog for now. |
i have the same problem, the cause is in func (c *Client) TransactionRequest in client.go if cseq := req.CSeq(); cseq != nil {
// Increase cseq if this is existing transaction
// WriteRequest for ex ACK will not increase and this is wanted behavior
// This will be a problem if we allow ACK to be passed as transaction request
cseq.SeqNo++
cseq.MethodName = req.Method
} the cancel req should not call cseq.SeqNo++, orelse sip server can not found the transaction, in my test, the freeswitch will response 481. and my hack now is seqno-- before call TransactionRequest. func (d *TSipDialog) newCancelRequest() *sip.Request {
cancelReq := sip.NewRequest(sip.CANCEL, d.inviteRequest.Recipient)
// Cancel request must match invite TOP via and only have that Via
cancelReq.AppendHeader(sip.HeaderClone(d.inviteRequest.Via()))
cancelReq.AppendHeader(sip.HeaderClone(d.inviteRequest.From()))
cancelReq.AppendHeader(sip.HeaderClone(d.inviteRequest.To()))
cancelReq.AppendHeader(sip.HeaderClone(d.inviteRequest.CallID()))
// TODO:sipgo add ++, so we need -- here
cseqHeader := sip.HeaderClone(d.inviteRequest.CSeq()).(*sip.CSeqHeader)
cseqHeader.SeqNo--
cancelReq.AppendHeader(cseqHeader)
cancelReq.AppendHeader(sip.HeaderClone(d.inviteRequest.GetHeader("User-Agent")))
sip.CopyHeaders("Route", d.inviteRequest, cancelReq)
cancelReq.SetSource(d.inviteRequest.Source())
cancelReq.SetDestination(d.inviteRequest.Destination())
return cancelReq
} @emiago what's your opinion about this? |
HI @yangjuncode . It is not issue if you are using dialog. I am still happy to remove this implicit behavior, but I think it also solves some issues, like re REGISTER. Generally I see it is bad. I will have a look Thanks for brining this up |
I am working on a simple scenario where after call initiation Cacnel request is sent.
There are 2 client, UserA and UserB who are connected to the sip server. The SIP Server is based on sipgo whereas the clients are based on SIPjs.
Scenario:
UserA calls UserB via SIP Server. Then UserA initiates the CANCEL Request. A similar CANCEL Request is required to be generated by SIP Server towards UserB.
In this case, the Cancel request is sent back to UserA instead of UserB.
Code snippet to generate Cancel Request:
`cancelReq := sip.NewRequest(sip.CANCEL, outDlg.InviteRequest.Recipient)
cancelReq.AppendHeader(sip.HeaderClone(outDlg.InviteRequest.Via())) // Cancel request must match invite TOP via and only have that Via
cancelReq.AppendHeader(sip.HeaderClone(outDlg.InviteRequest.From()))
cancelReq.AppendHeader(sip.HeaderClone(outDlg.InviteRequest.To()))
cancelReq.AppendHeader(sip.HeaderClone(outDlg.InviteRequest.CallID()))
cancelReq.SetSource(outDlg.InviteRequest.Source())
cancelReq.SetDestination(outDlg.InviteRequest.Destination())`
Extra Observation:
If I remove the line in the above code that copies the Via header, then UserB will correctly receive the Request. However, the client rejects the request because, according to RFC 3261, the Cancel must have the same Via as the original INVITE.
Please advise about the same. If you need more detailed traces, let me know, and I can provide them.
The text was updated successfully, but these errors were encountered: