Closed
Description
After updating to the latest version, I've noticed a significant delay in receiving a CANCEL message from an INVITE transaction. This was not the case with the previous version. Below is a snippet of the code where the issue is being observed:
for {
select {
case <-tx.Acks():
fmt.Println("Ack received")
case <-tx.Done():
fmt.Println("Transaction done", tx.Err() == sip.ErrTransactionCanceled)
// Signal transaction is done.
// Check any errors with tx.Err() to have more info why terminated
return
}
}
Metadata
Metadata
Assignees
Labels
No labels